CREATE YOUR OWN BOTNET (STEP BY STEP TUTORIAL).pdf
5 MB
Create Your Own BotNet/Malware Practical
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦Proxy Service-Intranet and Internet IP forwarding settings
set We have a computer with two network cards, eth0 connected to the external network, ip is 1.2.3.4 ;eth1 is connected to the internal network, the ip is 192.168.0.1. Now you need to forward the ip packet sent to port 81 of address 1.2.3.4 to port 8180 of ip address 192.168.0.2, set as follows:
1οΈβ£iptables -t nat -A PREROUTING -d 1.2.3.4 -p tcp -m tcp --dport 81 -j DNAT 192.168.0.2:8180
2οΈβ£ iptables -t nat -A POSTROUTING -d 192.168.0.2 -p tcp -m tcp --dport 8180 -j SNAT The
actual transmission process of 192.168.0.1 is as follows:
3οΈβ£Suppose that a client's ip address is 6.7.8.9, it uses the machine's 1080 port to connect to port 81 of 1.2.3.4, and the source address of the outgoing ip packet is 6.7.8.9, the source The port is 1080, the destination address is 1.2.3.4, and the destination port is 81.
4οΈβ£After the host 1.2.3.4 receives this packet, according to the first rule of the nat table, the destination address of the ip packet should be changed to 192.168.0.2, the destination port should be 8180, and an entry should be created in the connection tracking table. (It can be seen from the /proc/net/ip_conntrack file), and then sent to the routing module, by checking the routing table, it is determined that the ip packet should be sent to the eth1 interface.
5οΈβ£ Before sending the ip packet to the eth1 interface, according to the nat table the second rule, the more the source address of the packet ip 192.168.0.1 (the case whether it is more appropriate entry in the connection table tracking unacknowledged, who clearly requested guidance), and then sent to the interface eth1.
and The ip packet sent back from 192.168.0.2, the destination address is 192.168.0.1, the destination port is 1080, and the TCP/IP stack of the host 1.2.3.4 receives the ip packet, and the core looks for a match in the connection tracking table, and then Change the destination address of the ip packet from 192.168.0.1 to the original client's ip address 6.7.8.9,
6οΈβ£keeping the port number 1080 unchanged. In this way, the server's return packet can correctly return the client that initiated the connection, and the communication is like this Start.
written by undercode
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦Proxy Service-Intranet and Internet IP forwarding settings
set We have a computer with two network cards, eth0 connected to the external network, ip is 1.2.3.4 ;eth1 is connected to the internal network, the ip is 192.168.0.1. Now you need to forward the ip packet sent to port 81 of address 1.2.3.4 to port 8180 of ip address 192.168.0.2, set as follows:
1οΈβ£iptables -t nat -A PREROUTING -d 1.2.3.4 -p tcp -m tcp --dport 81 -j DNAT 192.168.0.2:8180
2οΈβ£ iptables -t nat -A POSTROUTING -d 192.168.0.2 -p tcp -m tcp --dport 8180 -j SNAT The
actual transmission process of 192.168.0.1 is as follows:
3οΈβ£Suppose that a client's ip address is 6.7.8.9, it uses the machine's 1080 port to connect to port 81 of 1.2.3.4, and the source address of the outgoing ip packet is 6.7.8.9, the source The port is 1080, the destination address is 1.2.3.4, and the destination port is 81.
4οΈβ£After the host 1.2.3.4 receives this packet, according to the first rule of the nat table, the destination address of the ip packet should be changed to 192.168.0.2, the destination port should be 8180, and an entry should be created in the connection tracking table. (It can be seen from the /proc/net/ip_conntrack file), and then sent to the routing module, by checking the routing table, it is determined that the ip packet should be sent to the eth1 interface.
5οΈβ£ Before sending the ip packet to the eth1 interface, according to the nat table the second rule, the more the source address of the packet ip 192.168.0.1 (the case whether it is more appropriate entry in the connection table tracking unacknowledged, who clearly requested guidance), and then sent to the interface eth1.
and The ip packet sent back from 192.168.0.2, the destination address is 192.168.0.1, the destination port is 1080, and the TCP/IP stack of the host 1.2.3.4 receives the ip packet, and the core looks for a match in the connection tracking table, and then Change the destination address of the ip packet from 192.168.0.1 to the original client's ip address 6.7.8.9,
6οΈβ£keeping the port number 1080 unchanged. In this way, the server's return packet can correctly return the client that initiated the connection, and the communication is like this Start.
written by undercode
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
BIN Disney+
CVV/Fecha: RND (Random)
IP : USA
Postal: 10080/10001
650159xxxxxxxxxxCVV/Fecha: RND (Random)
IP : USA
Postal: 10080/10001
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦Termux topic 2020
> Fast subdomains enumeration tool for penetration testers :
πΈπ½π π π°π»π»πΈπ π°π πΈπΎπ½ & π π π½ :
1οΈβ£git clone https://github.com/aboul3la/Sublist3r.git
2οΈβ£cd Sublist3r
3οΈβ£Installation on Windows:
c:\python27\python.exe -m pip install -r requirements.txt
π¦Installation on Linux
> sudo pip install -r requirements.txt
Requests Module (http://docs.python-requests.org/en/latest/)
π¦Install for Windows:
> c:\python27\python.exe -m pip install requests
π¦Install for Ubuntu/Debian:
> sudo apt-get install python-requests
π¦Install for Centos/Redhat:
> sudo yum install python-requests
> Install using pip on Linux:
sudo pip install requests
π¦REQUIREMENT 2 :
dnspython Module (http://www.dnspython.org/)
1οΈβ£Install for Windows:
c:\python27\python.exe -m pip install dnspython
2οΈβ£Install for Ubuntu/Debian:
sudo apt-get install python-dnspython
> Install using pip:
sudo pip install dnspython
argparse Module
3οΈβ£Install for Ubuntu/Debian:
sudo apt-get install python-argparse
4οΈβ£Install for Centos/Redhat:
sudo yum install python-argparse
>Install using pip:
sudo pip install argparse
for coloring in windows install the following libraries
c:\python27\python.exe -m pip install win_unicode_console colorama
π¦HOW TO USE ?
Examples
1) To list all the basic options and switches use -h switch:
python sublist3r.py -h
2) To enumerate subdomains of specific domain:
python sublist3r.py -d example.com
3) To enumerate subdomains of specific domain and show only subdomains which have open ports 80 and 443 :
python sublist3r.py -d example.com -p 80,443
4) To enumerate subdomains of specific domain and show the results in realtime:
python sublist3r.py -v -d example.com
5) To enumerate subdomains and enable the bruteforce module:
python sublist3r.py -b -d example.com
6) To enumerate subdomains and use specific engines such Google, Yahoo and Virustotal engines
python sublist3r.py -e google,yahoo,virustotal -d example.com
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦Termux topic 2020
> Fast subdomains enumeration tool for penetration testers :
πΈπ½π π π°π»π»πΈπ π°π πΈπΎπ½ & π π π½ :
1οΈβ£git clone https://github.com/aboul3la/Sublist3r.git
2οΈβ£cd Sublist3r
3οΈβ£Installation on Windows:
c:\python27\python.exe -m pip install -r requirements.txt
π¦Installation on Linux
> sudo pip install -r requirements.txt
Requests Module (http://docs.python-requests.org/en/latest/)
π¦Install for Windows:
> c:\python27\python.exe -m pip install requests
π¦Install for Ubuntu/Debian:
> sudo apt-get install python-requests
π¦Install for Centos/Redhat:
> sudo yum install python-requests
> Install using pip on Linux:
sudo pip install requests
π¦REQUIREMENT 2 :
dnspython Module (http://www.dnspython.org/)
1οΈβ£Install for Windows:
c:\python27\python.exe -m pip install dnspython
2οΈβ£Install for Ubuntu/Debian:
sudo apt-get install python-dnspython
> Install using pip:
sudo pip install dnspython
argparse Module
3οΈβ£Install for Ubuntu/Debian:
sudo apt-get install python-argparse
4οΈβ£Install for Centos/Redhat:
sudo yum install python-argparse
>Install using pip:
sudo pip install argparse
for coloring in windows install the following libraries
c:\python27\python.exe -m pip install win_unicode_console colorama
π¦HOW TO USE ?
Examples
1) To list all the basic options and switches use -h switch:
python sublist3r.py -h
2) To enumerate subdomains of specific domain:
python sublist3r.py -d example.com
3) To enumerate subdomains of specific domain and show only subdomains which have open ports 80 and 443 :
python sublist3r.py -d example.com -p 80,443
4) To enumerate subdomains of specific domain and show the results in realtime:
python sublist3r.py -v -d example.com
5) To enumerate subdomains and enable the bruteforce module:
python sublist3r.py -b -d example.com
6) To enumerate subdomains and use specific engines such Google, Yahoo and Virustotal engines
python sublist3r.py -e google,yahoo,virustotal -d example.com
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
GitHub
GitHub - aboul3la/Sublist3r: Fast subdomains enumeration tool for penetration testers
Fast subdomains enumeration tool for penetration testers - aboul3la/Sublist3r
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦These courses serve as comprehensive guide for any network and security professional who is starting a career in ethical hacking and penetration testing. It also can help individuals :
1) preparing for the [Offensive Security Certified Professional (OSCP)](https://www.offensive-security.com/information-security-certifications/), the [Certified Ethical Hacker (CEH)]
2) (https://www.eccouncil.org/programs/certified-ethical-hacker-ceh/), [CompTIA PenTest+](https://certification.comptia.org/certifications/pentest) and any other ethical hacking certification.
3) This course helps any cyber security professional that want to learn the skills required to becoming a professional ethical hacker or that want to learn more about general hacking methodologies and concepts.
4) These video courses are published by Pearson, but this GitHub repository is maintained and supported by the lead author of the series [Omar Santos](https://omarsantos.io/).
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦These courses serve as comprehensive guide for any network and security professional who is starting a career in ethical hacking and penetration testing. It also can help individuals :
1) preparing for the [Offensive Security Certified Professional (OSCP)](https://www.offensive-security.com/information-security-certifications/), the [Certified Ethical Hacker (CEH)]
2) (https://www.eccouncil.org/programs/certified-ethical-hacker-ceh/), [CompTIA PenTest+](https://certification.comptia.org/certifications/pentest) and any other ethical hacking certification.
3) This course helps any cyber security professional that want to learn the skills required to becoming a professional ethical hacker or that want to learn more about general hacking methodologies and concepts.
4) These video courses are published by Pearson, but this GitHub repository is maintained and supported by the lead author of the series [Omar Santos](https://omarsantos.io/).
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
Forwarded from UNDERCODE SECURITY
π¦cvs service-ViewCVS installation
Preface
ViewCVS is a software written in Python to view all data in the CVS code base. It has been used by many configuration management systems, and it is also a CVS auxiliary tool that can be selected like cvsweb in open source products.
Preparation before installation The
following software should already be installed on your system:
1) Python 1.5 or later, this can be installed without installation, because the ports will determine whether it is installed when compiling, if not, it will automatically compile and Installed.
2) cvs, cvs has been built in FreeBSD, so don't worry.
3) mysql 3.22 and above, if you need viewcvs to save data to mysql, then you should install the software in advance. Note that this software is not necessary for the operation of viewcvs.
π¦Installing ViewCVS
under FreeBSD Installing ViewCVS under FreeBSD is very simple, just install via ports:
root@~$cd /usr/ports/devel/viewcvs/
root@/usr/ports/devel/viewcvs$make install;make Clean
so that ViewCVS is installed in the viewcvs-version directory in /usr/local (current version is 0.9.2).
Configure basic ViewCVS
Copy viewcvs.conf.dist in viewcvs to a copy called viewcvs.conf. This file is the main configuration file used by viewcvs. In this file, at least the following parameters must be set:
# cvs_roots
# default_root
# rcs_path
# mime_types_file
cvs_roots settings
The original settings of cvs_roots in viewcvs.conf are:
cvs_roots =
Development: /home/
cvsroot Add to the list one by one, the format is [CVSROOT name] :[CVSROOT path], the following is an example of my settings:
cvs_roots =
maven: /home/
cvsd /cvs/maven, hdsite: /home/cvsd/cvs/hdsite,
bsdhowto: /home/cvsd/cvs/bsdhowto
Here I set up three CVSRoot to let viewcvs can see, their names are maven, hdsite, bsdhowto. It should be noted that the settings between each CVSRoot are separated by a comma.
default_root The
default_root is used to set the cvsroot item displayed by default on the ViewCVS homepage.
rcs_path
The original setting of rcs_path in viewcvs.conf is not there:
#rcs_path = /usr/bin/
We can see that it has been commented, if your rcs command is not in the /usr/bin directory, why not remove the comment , Change to the path where rcs is located. Under FreeBSD, the default rcs is under /usr/bin, so this setting can be left unchanged.
mime_types_file
has no mime_types_file setting in viewcvs.conf:
#mime_types_file = /usr/local/apache/conf/mime.types
We can point it to the mime setting of apache, or we can write a new setting ourselves, I feel It is not used by the web server, it should be a configuration item used when running independently.
Other configurations of ViewCVS
In addition to the basic settings, there are some other settings that are also useful. Here we will explain some useful settings one by one.
Other settings in [general]
address are used to set the email
address of the management contacts on the page address = HD
[vhosts] Virtual host support
If you have multiple virtual hosts to use the same cgi, you will find each host Different viewcvs.conf settings may be required, so vhost settings are possible in viewcvs.conf. This is the original description of
viewcvs.conf : # vhost1 = glob1, glob2
# vhost2 = glob3, glob4
# [vhost1-section]
# option = value
# [vhost1-othersection]
# option = value
# [vhost2-section]
# option = value
can basically be understood at a glance, use a name for a virtual host, and explain the virtual host Corresponding url. Each virtual host can set all section attributes. The name of the section plus the name of the virtual host is sufficient. This is an example I set:
mavencn = maven.huangdong.com
bsd = bsd.huangdong.com
[mavencn-general]
default_root = maven
[bsd-general]
default_root = bsdhowto
Preface
ViewCVS is a software written in Python to view all data in the CVS code base. It has been used by many configuration management systems, and it is also a CVS auxiliary tool that can be selected like cvsweb in open source products.
Preparation before installation The
following software should already be installed on your system:
1) Python 1.5 or later, this can be installed without installation, because the ports will determine whether it is installed when compiling, if not, it will automatically compile and Installed.
2) cvs, cvs has been built in FreeBSD, so don't worry.
3) mysql 3.22 and above, if you need viewcvs to save data to mysql, then you should install the software in advance. Note that this software is not necessary for the operation of viewcvs.
π¦Installing ViewCVS
under FreeBSD Installing ViewCVS under FreeBSD is very simple, just install via ports:
root@~$cd /usr/ports/devel/viewcvs/
root@/usr/ports/devel/viewcvs$make install;make Clean
so that ViewCVS is installed in the viewcvs-version directory in /usr/local (current version is 0.9.2).
Configure basic ViewCVS
Copy viewcvs.conf.dist in viewcvs to a copy called viewcvs.conf. This file is the main configuration file used by viewcvs. In this file, at least the following parameters must be set:
# cvs_roots
# default_root
# rcs_path
# mime_types_file
cvs_roots settings
The original settings of cvs_roots in viewcvs.conf are:
cvs_roots =
Development: /home/
cvsroot Add to the list one by one, the format is [CVSROOT name] :[CVSROOT path], the following is an example of my settings:
cvs_roots =
maven: /home/
cvsd /cvs/maven, hdsite: /home/cvsd/cvs/hdsite,
bsdhowto: /home/cvsd/cvs/bsdhowto
Here I set up three CVSRoot to let viewcvs can see, their names are maven, hdsite, bsdhowto. It should be noted that the settings between each CVSRoot are separated by a comma.
default_root The
default_root is used to set the cvsroot item displayed by default on the ViewCVS homepage.
rcs_path
The original setting of rcs_path in viewcvs.conf is not there:
#rcs_path = /usr/bin/
We can see that it has been commented, if your rcs command is not in the /usr/bin directory, why not remove the comment , Change to the path where rcs is located. Under FreeBSD, the default rcs is under /usr/bin, so this setting can be left unchanged.
mime_types_file
has no mime_types_file setting in viewcvs.conf:
#mime_types_file = /usr/local/apache/conf/mime.types
We can point it to the mime setting of apache, or we can write a new setting ourselves, I feel It is not used by the web server, it should be a configuration item used when running independently.
Other configurations of ViewCVS
In addition to the basic settings, there are some other settings that are also useful. Here we will explain some useful settings one by one.
Other settings in [general]
address are used to set the email
address of the management contacts on the page address = HD
[vhosts] Virtual host support
If you have multiple virtual hosts to use the same cgi, you will find each host Different viewcvs.conf settings may be required, so vhost settings are possible in viewcvs.conf. This is the original description of
viewcvs.conf : # vhost1 = glob1, glob2
# vhost2 = glob3, glob4
# [vhost1-section]
# option = value
# [vhost1-othersection]
# option = value
# [vhost2-section]
# option = value
can basically be understood at a glance, use a name for a virtual host, and explain the virtual host Corresponding url. Each virtual host can set all section attributes. The name of the section plus the name of the virtual host is sufficient. This is an example I set:
mavencn = maven.huangdong.com
bsd = bsd.huangdong.com
[mavencn-general]
default_root = maven
[bsd-general]
default_root = bsdhowto
Forwarded from UNDERCODE SECURITY
I set up two virtual hosts: mavencn and bsd , Corresponding to two URLs of maven.huangdong.com and bsd.huangdong.com. In the following, the default_root attribute in the general section is set for two virtual hosts.
Precautions for installation
First of all, you must pay attention to the permission settings of files and directories in CVS. You must give the account that the web server runs permission to read. When I use the cvsd service in the ports in FreeBSD, I set its umask to 022.
written by Undercode
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
Precautions for installation
First of all, you must pay attention to the permission settings of files and directories in CVS. You must give the account that the web server runs permission to read. When I use the cvsd service in the ports in FreeBSD, I set its umask to 022.
written by Undercode
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦2020 Online #Analyzers :
1) [AndroTotal](http://andrototal.org/)
2) [Appknox](https://www.appknox.com/) - not free
3) [AVC UnDroid](http://undroid.av-comparatives.info/)
4) [Virustotal](https://www.virustotal.com/) - max 128MB
5) [Fraunhofer App-ray](http://app-ray.co/) - not free
6) [AppCritique](https://appcritique.boozallen.com) - Upload your Android APKs and receive comprehensive free security assessments.
7) [NowSecure Lab Automated](https://www.nowsecure.com/blog/2016/09/19/announcing-nowsecure-lab-automated/) - Enterprise tool for mobile app security testing both Android and iOS mobile apps. Lab Automated features dynamic and static analysis on real devices in the cloud to return results in minutes. Not free
8) [AMAaaS](https://amaaas.com) - Free Android Malware Analysis Service. A baremetal service features static and dynamic analysis for Android applications. A product of [MalwarePot](https://malwarepot.com/index.php/AMAaaS).
9) [App Detonator](https://appdetonator.run/) - Detonate APK binary to provide source code level details including app author, signature, build and manifest information. 3 Analysis/day free quota.
10) [BitBaan](https://malab.bitbaan.com/)
11) [NVISO ApkScan](https://apkscan.nviso.be/) - sunsetting on Oct 31, 2019
12) [Mobile Malware Sandbox](http://www.mobilemalware.com.br/analysis/index\_en.php)
13) [IBM Security AppScan Mobile Analyzer](https://appscan.bluemix.net/mobileAnalyzer) - not free
14) [Visual Threat](https://www.visualthreat.com/) - no longer an Android app analyzer
16) [Tracedroid](http://tracedroid.few.vu.nl/)
17) [habo](https://habo.qq.com/) - 10/day
18) [CopperDroid](http://copperdroid.isg.rhul.ac.uk/copperdroid/)
19) [SandDroid](http://sanddroid.xjtu.edu.cn/)
20) [Stowaway](http://www.android-permissions.org/)
21) [Anubis](http://anubis.iseclab.org/)
22) [Mobile app insight](http://www.mobile-app-insight.org)
23) [Mobile-Sandbox](http://mobile-sandbox.com)
24) [Ijiami](http://safe.ijiami.cn/)
25) [Comdroid](http://www.comdroid.org/)
26) [Android Sandbox](http://www.androidsandbox.net/)
27) [Foresafe](http://www.foresafe.com/scan)
28) [Dexter](https://dexter.dexlabs.org/)
29) ~[MobiSec Eacus](http://www.mobiseclab.org/eacus.jsp)
30) [Fireeye](https://fireeye.ijinshan.com/)- max 60MB 15/day~~
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦2020 Online #Analyzers :
1) [AndroTotal](http://andrototal.org/)
2) [Appknox](https://www.appknox.com/) - not free
3) [AVC UnDroid](http://undroid.av-comparatives.info/)
4) [Virustotal](https://www.virustotal.com/) - max 128MB
5) [Fraunhofer App-ray](http://app-ray.co/) - not free
6) [AppCritique](https://appcritique.boozallen.com) - Upload your Android APKs and receive comprehensive free security assessments.
7) [NowSecure Lab Automated](https://www.nowsecure.com/blog/2016/09/19/announcing-nowsecure-lab-automated/) - Enterprise tool for mobile app security testing both Android and iOS mobile apps. Lab Automated features dynamic and static analysis on real devices in the cloud to return results in minutes. Not free
8) [AMAaaS](https://amaaas.com) - Free Android Malware Analysis Service. A baremetal service features static and dynamic analysis for Android applications. A product of [MalwarePot](https://malwarepot.com/index.php/AMAaaS).
9) [App Detonator](https://appdetonator.run/) - Detonate APK binary to provide source code level details including app author, signature, build and manifest information. 3 Analysis/day free quota.
10) [BitBaan](https://malab.bitbaan.com/)
11) [NVISO ApkScan](https://apkscan.nviso.be/) - sunsetting on Oct 31, 2019
12) [Mobile Malware Sandbox](http://www.mobilemalware.com.br/analysis/index\_en.php)
13) [IBM Security AppScan Mobile Analyzer](https://appscan.bluemix.net/mobileAnalyzer) - not free
14) [Visual Threat](https://www.visualthreat.com/) - no longer an Android app analyzer
16) [Tracedroid](http://tracedroid.few.vu.nl/)
17) [habo](https://habo.qq.com/) - 10/day
18) [CopperDroid](http://copperdroid.isg.rhul.ac.uk/copperdroid/)
19) [SandDroid](http://sanddroid.xjtu.edu.cn/)
20) [Stowaway](http://www.android-permissions.org/)
21) [Anubis](http://anubis.iseclab.org/)
22) [Mobile app insight](http://www.mobile-app-insight.org)
23) [Mobile-Sandbox](http://mobile-sandbox.com)
24) [Ijiami](http://safe.ijiami.cn/)
25) [Comdroid](http://www.comdroid.org/)
26) [Android Sandbox](http://www.androidsandbox.net/)
27) [Foresafe](http://www.foresafe.com/scan)
28) [Dexter](https://dexter.dexlabs.org/)
29) ~[MobiSec Eacus](http://www.mobiseclab.org/eacus.jsp)
30) [Fireeye](https://fireeye.ijinshan.com/)- max 60MB 15/day~~
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦#Static Analysis Tools 2020 :
1. [Androwarn](https://github.com/maaaaz/androwarn/) - detect and warn the user about potential malicious behaviours developed by an Android application.
2. [ApkAnalyser](https://github.com/sonyxperiadev/ApkAnalyser)
3. [APKInspector](https://github.com/honeynet/apkinspector/)
4. [Droid Intent Data Flow Analysis for Information Leakage](https://www.cert.org/secure-coding/tools/didfail.cfm)
5. [DroidLegacy](https://bitbucket.org/srl/droidlegacy)
7. [Smali CFG generator](https://github.com/EugenioDelfa/Smali-CFGs)
8. [FlowDroid](https://blogs.uni-paderborn.de/sse/tools/flowdroid/)
9. [Android Decompiler](https://www.pnfsoftware.com/) Γ’β¬β not free
10. [PSCout](http://pscout.csl.toronto.edu/) - A tool that extracts the permission specification from the Android OS source code using static analysis
11. [Amandroid](http://amandroid.sireum.org/)
12. [SmaliSCA](https://github.com/dorneanu/smalisca) - Smali Static Code Analysis
13. [CFGScanDroid](https://github.com/douggard/CFGScanDroid) - Scans and compares CFG against CFG of malicious applications
14. [Madrolyzer](https://github.com/maldroid/maldrolyzer) - extracts actionable data like C&C, phone number etc.
15. [SPARTA](https://www.cs.washington.edu/sparta) - verifies (proves) that an app satisfies an information-flow security policy; built on the [Checker Framework](https://types.cs.washington.edu/checker-framework/)
16. [ConDroid](https://github.com/JulianSchuette/ConDroid) - Performs a combination of symbolic + concrete execution of the app
17. [DroidRA](https://github.com/serval-snt-uni-lu/DroidRA)
18. [RiskInDroid](https://github.com/ClaudiuGeorgiu/RiskInDroid) - A tool for calculating the risk of Android apps based on their permissions, with online demo available.
19. [SUPER](https://github.com/SUPERAndroidAnalyzer/super) - Secure, Unified, Powerful and Extensible Rust Android Analyzer
20. [ClassyShark](https://github.com/google/android-classyshark) - Standalone binary inspection tool which can browse any Android executable and show important infos.
21. [StaCoAn](https://github.com/vincentcox/StaCoAn) - Crossplatform tool which aids developers, bugbounty hunters and ethical hackers performing static code analysis on mobile applications. This tool was created with a big focus on usability and graphical guidance in the user interface.
22. [JAADAS](https://github.com/flankerhqd/JAADAS) - Joint intraprocedure and interprocedure program analysis tool to find vulnerabilities in Android apps, built on Soot and Scala
23. ~~[Several tools from PSU](http://siis.cse.psu.edu/tools.html)~~
24. [Quark-Engine](https://github.com/quark-engine/quark-engine) - An Obfuscation-Neglect Android Malware Scoring System
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦#Static Analysis Tools 2020 :
1. [Androwarn](https://github.com/maaaaz/androwarn/) - detect and warn the user about potential malicious behaviours developed by an Android application.
2. [ApkAnalyser](https://github.com/sonyxperiadev/ApkAnalyser)
3. [APKInspector](https://github.com/honeynet/apkinspector/)
4. [Droid Intent Data Flow Analysis for Information Leakage](https://www.cert.org/secure-coding/tools/didfail.cfm)
5. [DroidLegacy](https://bitbucket.org/srl/droidlegacy)
7. [Smali CFG generator](https://github.com/EugenioDelfa/Smali-CFGs)
8. [FlowDroid](https://blogs.uni-paderborn.de/sse/tools/flowdroid/)
9. [Android Decompiler](https://www.pnfsoftware.com/) Γ’β¬β not free
10. [PSCout](http://pscout.csl.toronto.edu/) - A tool that extracts the permission specification from the Android OS source code using static analysis
11. [Amandroid](http://amandroid.sireum.org/)
12. [SmaliSCA](https://github.com/dorneanu/smalisca) - Smali Static Code Analysis
13. [CFGScanDroid](https://github.com/douggard/CFGScanDroid) - Scans and compares CFG against CFG of malicious applications
14. [Madrolyzer](https://github.com/maldroid/maldrolyzer) - extracts actionable data like C&C, phone number etc.
15. [SPARTA](https://www.cs.washington.edu/sparta) - verifies (proves) that an app satisfies an information-flow security policy; built on the [Checker Framework](https://types.cs.washington.edu/checker-framework/)
16. [ConDroid](https://github.com/JulianSchuette/ConDroid) - Performs a combination of symbolic + concrete execution of the app
17. [DroidRA](https://github.com/serval-snt-uni-lu/DroidRA)
18. [RiskInDroid](https://github.com/ClaudiuGeorgiu/RiskInDroid) - A tool for calculating the risk of Android apps based on their permissions, with online demo available.
19. [SUPER](https://github.com/SUPERAndroidAnalyzer/super) - Secure, Unified, Powerful and Extensible Rust Android Analyzer
20. [ClassyShark](https://github.com/google/android-classyshark) - Standalone binary inspection tool which can browse any Android executable and show important infos.
21. [StaCoAn](https://github.com/vincentcox/StaCoAn) - Crossplatform tool which aids developers, bugbounty hunters and ethical hackers performing static code analysis on mobile applications. This tool was created with a big focus on usability and graphical guidance in the user interface.
22. [JAADAS](https://github.com/flankerhqd/JAADAS) - Joint intraprocedure and interprocedure program analysis tool to find vulnerabilities in Android apps, built on Soot and Scala
23. ~~[Several tools from PSU](http://siis.cse.psu.edu/tools.html)~~
24. [Quark-Engine](https://github.com/quark-engine/quark-engine) - An Obfuscation-Neglect Android Malware Scoring System
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
GitHub
GitHub - maaaaz/androwarn: Yet another static code analyzer for malicious Android applications
Yet another static code analyzer for malicious Android applications - maaaaz/androwarn
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦App #Vulnerability Scanners Popular 2020
1οΈβ£ QARK - QARK by LinkedIn is for app developers to scan app for security issues
2οΈβ£ AndroBugs
3οΈβ£Nogotofail
4οΈβ£~Devknox - IDE plugin to build secure Android apps. Not maintained anymore.~~
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦App #Vulnerability Scanners Popular 2020
1οΈβ£ QARK - QARK by LinkedIn is for app developers to scan app for security issues
2οΈβ£ AndroBugs
3οΈβ£Nogotofail
4οΈβ£~Devknox - IDE plugin to build secure Android apps. Not maintained anymore.~~
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
GitHub
GitHub - linkedin/qark: Tool to look for several security related Android application vulnerabilities
Tool to look for several security related Android application vulnerabilities - linkedin/qark
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦#Dynamic Analysis Tools 2020 Topic :
1. Android DBI frameowork
2. Androl4b- A Virtual Machine For Assessing Android applications, Reverse Engineering and Malware Analysis
4. Mobile-Security-Framework MobSF - Mobile Security Framework is an intelligent, all-in-one open source mobile application (Android/iOS) automated pen-testing framework capable of performing static, dynamic analysis and web API testing.
5. AppUse Γ’β¬β custom build for pentesting
6. Droidbox
10. Drozer
11. Xposed - equivalent of doing Stub based code injection but without any modifications to the binary
12. Inspeckage - Android Package Inspector - dynamic analysis with api hooks, start unexported activities and more. (Xposed Module)
13. Android Hooker - Dynamic Java code instrumentation (requires the Substrate Framework)
14. ProbeDroid - Dynamic Java code instrumentation
15. Android Tamer - Virtual / Live Platform for Android Security Professionals
16. DECAF - Dynamic Executable Code Analysis Framework based on QEMU (DroidScope is now an extension to DECAF)
17. CuckooDroid - Android extension for Cuckoo sandbox
18. Mem - Memory analysis of Android (root required)
19. Crowdroid Γ’β¬β unable to find the actual tool
20. AuditdAndroid Γ’β¬β android port of auditd, not under active development anymore
21. Android Security Evaluation Framework - not under active development anymore
23. Aurasium Γ’β¬β Practical security policy enforcement for Android apps via bytecode rewriting and in-place reference monitor.
24. Android Linux Kernel modules
25. Appie - Appie is a software package that has been pre-configured to function as an Android Pentesting Environment. It is completely portable and can be carried on USB stick or smartphone. This is a one stop answer for all the tools needed in Android Application Security Assessment and an awesome alternative to existing virtual machines.
26. StaDynA - a system supporting security app analysis in the presence of dynamic code update features (dynamic class loading and reflection). This tool combines static and dynamic analysis of Android applications in order to reveal the hidden/updated behavior and extend static analysis results with this information.
27. DroidAnalytics - incomplete
28. Vezir Project - Virtual Machine for Mobile Application Pentesting and Mobile Malware Analysis
29. MARA - Mobile Application Reverse engineering and Analysis Framework
30. Taintdroid - requires AOSP compilation
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦#Dynamic Analysis Tools 2020 Topic :
1. Android DBI frameowork
2. Androl4b- A Virtual Machine For Assessing Android applications, Reverse Engineering and Malware Analysis
4. Mobile-Security-Framework MobSF - Mobile Security Framework is an intelligent, all-in-one open source mobile application (Android/iOS) automated pen-testing framework capable of performing static, dynamic analysis and web API testing.
5. AppUse Γ’β¬β custom build for pentesting
6. Droidbox
10. Drozer
11. Xposed - equivalent of doing Stub based code injection but without any modifications to the binary
12. Inspeckage - Android Package Inspector - dynamic analysis with api hooks, start unexported activities and more. (Xposed Module)
13. Android Hooker - Dynamic Java code instrumentation (requires the Substrate Framework)
14. ProbeDroid - Dynamic Java code instrumentation
15. Android Tamer - Virtual / Live Platform for Android Security Professionals
16. DECAF - Dynamic Executable Code Analysis Framework based on QEMU (DroidScope is now an extension to DECAF)
17. CuckooDroid - Android extension for Cuckoo sandbox
18. Mem - Memory analysis of Android (root required)
19. Crowdroid Γ’β¬β unable to find the actual tool
20. AuditdAndroid Γ’β¬β android port of auditd, not under active development anymore
21. Android Security Evaluation Framework - not under active development anymore
23. Aurasium Γ’β¬β Practical security policy enforcement for Android apps via bytecode rewriting and in-place reference monitor.
24. Android Linux Kernel modules
25. Appie - Appie is a software package that has been pre-configured to function as an Android Pentesting Environment. It is completely portable and can be carried on USB stick or smartphone. This is a one stop answer for all the tools needed in Android Application Security Assessment and an awesome alternative to existing virtual machines.
26. StaDynA - a system supporting security app analysis in the presence of dynamic code update features (dynamic class loading and reflection). This tool combines static and dynamic analysis of Android applications in order to reveal the hidden/updated behavior and extend static analysis results with this information.
27. DroidAnalytics - incomplete
28. Vezir Project - Virtual Machine for Mobile Application Pentesting and Mobile Malware Analysis
29. MARA - Mobile Application Reverse engineering and Analysis Framework
30. Taintdroid - requires AOSP compilation
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
GitHub
GitHub - sh4hin/Androl4b: A Virtual Machine For Assessing Android applications, Reverse Engineering and Malware Analysis
A Virtual Machine For Assessing Android applications, Reverse Engineering and Malware Analysis - sh4hin/Androl4b
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦Most Popular #Market Crawlers in 2019-2020
1. Google play crawler (Java)
2. Google play crawler (Python)
3. Google play crawler (Node) - get app details and download apps from official Google Play Store.
4. Aptoide downloader (Node) - download apps from Aptoide third-party Android market
5. Appland downloader (Node) - download apps from Appland third-party Android market
6. Apkpure - Online apk downloader. Provides also an own app for downloading.
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦Most Popular #Market Crawlers in 2019-2020
1. Google play crawler (Java)
2. Google play crawler (Python)
3. Google play crawler (Node) - get app details and download apps from official Google Play Store.
4. Aptoide downloader (Node) - download apps from Aptoide third-party Android market
5. Appland downloader (Node) - download apps from Appland third-party Android market
6. Apkpure - Online apk downloader. Provides also an own app for downloading.
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
GitHub
GitHub - Akdeniz/google-play-crawler: Play with Google Play API :)
Play with Google Play API :). Contribute to Akdeniz/google-play-crawler development by creating an account on GitHub.
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦#Misc Tools 2020 (popular tools ):
1. smalihook
3. AXMLPrinter2 - to convert binary XML files to human-readable XML files
4. adb autocomplete
5. Dalvik opcodes
7. ExploitMe Android Labs - for practice
8. GoatDroid - for practice
9. Android InsecureBank - for practice
10. mitmproxy
11. dockerfile/androguard
12. Android Vulnerability Test Suite - android-vts scans a device for set of vulnerabilities
13. AppMon- AppMon is an automated framework for monitoring and tampering system API calls of native macOS, iOS and android apps. It is based on Frida.
14. Internal Blue - Bluetooth experimentation framework based on Reverse Engineering of Broadcom Bluetooth Controllers
15. Opcodes table for quick reference
15. APK-Downloader - seems dead now
## <a name="academic"></a>Academic/Research/Publications/Books
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦#Misc Tools 2020 (popular tools ):
1. smalihook
3. AXMLPrinter2 - to convert binary XML files to human-readable XML files
4. adb autocomplete
5. Dalvik opcodes
7. ExploitMe Android Labs - for practice
8. GoatDroid - for practice
9. Android InsecureBank - for practice
10. mitmproxy
11. dockerfile/androguard
12. Android Vulnerability Test Suite - android-vts scans a device for set of vulnerabilities
13. AppMon- AppMon is an automated framework for monitoring and tampering system API calls of native macOS, iOS and android apps. It is based on Frida.
14. Internal Blue - Bluetooth experimentation framework based on Reverse Engineering of Broadcom Bluetooth Controllers
15. Opcodes table for quick reference
15. APK-Downloader - seems dead now
## <a name="academic"></a>Academic/Research/Publications/Books
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
Blogspot
original smalihook java source
i've noticed some interest about a file that antilvl sometimes uses when cracking a program. it's called smalihook and it's purpose is to p...
Analysis Of Exploitation_ CVE-2020-10189.pdf
1.1 MB
Analysis Of Exploitation- CVE-2020-10189
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦Android Pentesting 2020 Most usefull sources :
1) OWASP Mobile Security Testing Guide Manual
2) doridori/Android-Security-Reference
3) android app security checklist
4) Mobile App Pentest Cheat Sheet
5) Android Reverse Engineering 101 by Daniele Altomare (Web Archive link)
6) Mobile Security Reading Room - A reading room which contains well categorised technical reading material about mobile penetration testing, mobile malware, mobile forensics and all kind of mobile security related topics~~
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦Android Pentesting 2020 Most usefull sources :
1) OWASP Mobile Security Testing Guide Manual
2) doridori/Android-Security-Reference
3) android app security checklist
4) Mobile App Pentest Cheat Sheet
5) Android Reverse Engineering 101 by Daniele Altomare (Web Archive link)
6) Mobile Security Reading Room - A reading room which contains well categorised technical reading material about mobile penetration testing, mobile malware, mobile forensics and all kind of mobile security related topics~~
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
GitHub
GitHub - OWASP/mastg: The OWASP Mobile Application Security Testing Guide (MASTG) is a comprehensive manual for mobile app securityβ¦
The OWASP Mobile Application Security Testing Guide (MASTG) is a comprehensive manual for mobile app security testing and reverse engineering. It describes technical processes for verifying the OWA...
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
#Android Malwares & Security sources 2020 :
1. Android Security Bulletins
2. Android's reported security vulnerabilities
3. Android Devices Security Patch Status
4. AOSP - Issue tracker
5. OWASP Mobile Top 10 2016
6. Exploit Database - click search
7. Vulnerability Google Doc
8. Google Android Security TeamΓ’β¬β’s Classifications for Potentially Harmful Applications (Malware)
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
#Android Malwares & Security sources 2020 :
1. Android Security Bulletins
2. Android's reported security vulnerabilities
3. Android Devices Security Patch Status
4. AOSP - Issue tracker
5. OWASP Mobile Top 10 2016
6. Exploit Database - click search
7. Vulnerability Google Doc
8. Google Android Security TeamΓ’β¬β’s Classifications for Potentially Harmful Applications (Malware)
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
Cvedetails
Google Android : Security vulnerabilities, CVEs
Security vulnerabilities of Google Android : List of vulnerabilities affecting any version of this product
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦#Malware 2020 resources :
1. androguard - Database Android Malwares wiki
2. Android Malware Github repo
3. Android Malware Genome Project - contains 1260 malware samples categorized into 49 different malware families, free for research purpose.
4. Contagio Mobile Malware Mini Dump
5. VirusTotal Malware Intelligence Service - powered by VirusTotal, not free
6. Drebin
8. Kharon Malware Dataset - 7 malwares which have been reverse engineered and documented
9. Android Adware and General Malware Dataset
10. Android PRAGuard Dataset - The dataset contains 10479 samples, obtained by obfuscating the MalGenome and the Contagio Minidump datasets with seven different obfuscation techniques.
11. AndroZoo - AndroZoo is a growing collection of Android Applications collected from several sources, including the official Google Play app market.
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦#Malware 2020 resources :
1. androguard - Database Android Malwares wiki
2. Android Malware Github repo
3. Android Malware Genome Project - contains 1260 malware samples categorized into 49 different malware families, free for research purpose.
4. Contagio Mobile Malware Mini Dump
5. VirusTotal Malware Intelligence Service - powered by VirusTotal, not free
6. Drebin
8. Kharon Malware Dataset - 7 malwares which have been reverse engineered and documented
9. Android Adware and General Malware Dataset
10. Android PRAGuard Dataset - The dataset contains 10479 samples, obtained by obfuscating the MalGenome and the Contagio Minidump datasets with seven different obfuscation techniques.
11. AndroZoo - AndroZoo is a growing collection of Android Applications collected from several sources, including the official Google Play app market.
β Git 2020 sources
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
GitHub
GitHub - ashishb/android-malware: Collection of android malware samples
Collection of android malware samples. Contribute to ashishb/android-malware development by creating an account on GitHub.