2019-01-28 18:44:11 +00:00
|
|
|
#!/usr/bin/env bash
|
2023-03-27 04:18:42 +00:00
|
|
|
set -euo pipefail
|
2018-10-04 07:05:45 +00:00
|
|
|
|
2018-10-19 21:03:40 +00:00
|
|
|
|
2019-03-29 23:36:27 +00:00
|
|
|
DEAD_URLS='opencollective.com','http://copperdroid.isg.rhul.ac.uk/copperdroid/',\
|
|
|
|
'http://sanddroid.xjtu.edu.cn/','http://www.foresafe.com/scan',\
|
|
|
|
'https://github.com/BaiduSecurityLabs/ZjDroid','https://github.com/yangbean9/ZjDroid',\
|
|
|
|
'https://appanalysis.org/download.html','https://labs.mwrinfosecurity.com/tools/2012/03/16/mercury/',\
|
|
|
|
'https://dexter.dexlabs.org/','http://www.mobiseclab.org/eacus.jsp','https://fireeye.ijinshan.com/',\
|
|
|
|
'http://www.comdroid.org/','http://www.androidsandbox.net/','http://andrototal.org',\
|
|
|
|
'http://www.mobile-app-insight.org','http://anubis.iseclab.org/',\
|
|
|
|
'http://blog.avlyun.com/wp-content/uploads/2014/04/SmaliViewer.zip',\
|
2023-03-27 04:18:42 +00:00
|
|
|
'habo.qq.com','http://admire.necst.it/','http://tracedroid.few.vu.nl',\
|
2019-04-29 04:20:02 +00:00
|
|
|
'http://appanalysis.org','http://dunkelheit.com.br','https://mobile-security.zeef.com',\
|
2019-07-28 18:55:50 +00:00
|
|
|
'https://redmine.honeynet.org/projects/are/wiki','https://www.visualthreat.com/',\
|
2019-09-24 06:55:57 +00:00
|
|
|
'http://www.mobilemalware.com.br','https://appscan.bluemix.net',\
|
2019-10-25 05:02:39 +00:00
|
|
|
'http://siis.cse.psu.edu/tools.html','http://siis.cse.psu.edu/dare/index.html',\
|
2019-12-29 11:04:29 +00:00
|
|
|
'http://codekiem.com/2012/02/24/apk-downloader/','https://apkscan.nviso.be',\
|
2020-08-28 20:41:41 +00:00
|
|
|
'http://ww38.xchg.info','https://thecobraden.com/projects/cobradroid',\
|
|
|
|
'https://bitbucket.org/mstrobel/procyon/wiki/',\
|
2021-06-01 03:48:52 +00:00
|
|
|
'https://code.google.com/p/androguard/wiki/DatabaseAndroidMalwares',\
|
|
|
|
'https://github.com/ashishb/android-security-awesome/actions',\
|
2021-10-09 23:51:55 +00:00
|
|
|
'https://appcritique.boozallen.com',\
|
|
|
|
'https://amaaas.com',\
|
2023-03-27 04:18:42 +00:00
|
|
|
'https://malwarepot.com/index.php/AMAaaS',\
|
|
|
|
'https://androidtamer.com/',\
|
|
|
|
'https://kb.androidtamer.com/Device_Security_Patch_tracker/',\
|
|
|
|
'http://undroid.av-comparatives.info/',\
|
|
|
|
'https://github.com/EugenioDelfa/Smali-CFGs',\
|
|
|
|
'https://malab.bitbaan.com/',\
|
2023-08-04 07:27:57 +00:00
|
|
|
'https://www.android-device-security.org/client/datatable',\
|
|
|
|
'http://pralab.diee.unica.it/en/AndroidPRAGuardDataset',\
|
2023-08-04 07:34:32 +00:00
|
|
|
'https://www.nccgroup.trust/us/about-us/resources/intent-fuzzer/',\
|
2024-02-24 09:58:14 +00:00
|
|
|
'https://www.sec.tu-bs.de/~danarp/drebin/',\
|
2024-02-24 09:59:43 +00:00
|
|
|
'https://apkpure.com',\
|
|
|
|
'https://approver.talos-sec.com'
|
2019-03-29 23:36:27 +00:00
|
|
|
|
2022-02-10 01:21:38 +00:00
|
|
|
FLAKY_URLS='http://safe.ijiami.cn/',\
|
2023-03-27 04:18:42 +00:00
|
|
|
'https://apkcombo.com/apk-downloader/',\
|
2022-02-10 01:21:38 +00:00
|
|
|
|
2018-10-19 21:03:40 +00:00
|
|
|
SRC_FILE=README.md
|
2023-03-27 04:18:42 +00:00
|
|
|
# Install urlsup with `cargo install urlsup`
|
|
|
|
urlsup \
|
|
|
|
--allow 301,302 \
|
2018-10-19 21:03:40 +00:00
|
|
|
--white-list ${DEAD_URLS},${FLAKY_URLS} \
|
2023-03-27 04:18:42 +00:00
|
|
|
${SRC_FILE}
|