π¦ Ransomware wannacry real code
https://github.com/ytisf/theZoo/tree/master/malwares/Binaries/Ransomware.WannaCry
https://github.com/ytisf/theZoo/tree/master/malwares/Binaries/Ransomware.WannaCry
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦2020 Wifi hacking tips :
#Using Kernel Modules to Simulate Wireless Adapters to Practice Pen Testing
You can use mac80211_hwsim is a software simulator of 802.11 radio(s) for mac80211 in Kali Linux and other penetration testing distributions like Parrot.
[mac80211_hwsim](https://wireless.wiki.kernel.org/en/users/drivers/mac80211_hwsim) kernel module has a parameter 'radios' that can be used to select how many radios are simulated (default 2). This allows configuration of both very simply setups (e.g., just a single access point and a station) or large scale tests (multiple access points with hundreds of stations).
The following site provides a description:
- https://wireless.wiki.kernel.org/en/users/drivers/mac80211_hwsim
#Starting the Kernel Module in Kali
In my Kali Linux box, I have only one active interface (eth0).
I am starting the simulator kernel module with the
After starting the module, the wireless interfaces are shown:
You can then install
#Install and Configure hostapd
You can then install
π¦2020 Wifi hacking tips :
#Using Kernel Modules to Simulate Wireless Adapters to Practice Pen Testing
You can use mac80211_hwsim is a software simulator of 802.11 radio(s) for mac80211 in Kali Linux and other penetration testing distributions like Parrot.
[mac80211_hwsim](https://wireless.wiki.kernel.org/en/users/drivers/mac80211_hwsim) kernel module has a parameter 'radios' that can be used to select how many radios are simulated (default 2). This allows configuration of both very simply setups (e.g., just a single access point and a station) or large scale tests (multiple access points with hundreds of stations).
The following site provides a description:
- https://wireless.wiki.kernel.org/en/users/drivers/mac80211_hwsim
#Starting the Kernel Module in Kali
In my Kali Linux box, I have only one active interface (eth0).
root@kali:~# ip -brie a
lo UNKNOWN 127.0.0.1/8 ::1/128
eth0 UP 172.16.217.170/24 fe80::20c:29ff:fe3c:82b0/64
I am starting the simulator kernel module with the
modprobe mac80211_hwsim command:root@kali:~# modprobe mac80211_hwsim
After starting the module, the wireless interfaces are shown:
root@kali:~# ip -brie a
lo UNKNOWN 127.0.0.1/8 ::1/128
eth0 UP 172.16.217.170/24 fe80::20c:29ff:fe3c:82b0/64
wlan0 DOWN
wlan1 DOWN
hwsim0 DOWN
You can then install
hostapd to create a wireless access point and then use aircrack-ng to perform wireless assessments.#Install and Configure hostapd
You can then install
hostapd, as shown below:root@kali:~# sudo apt install hostapd
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
hostapd
0 upgraded, 1 newly installed, 0 to remove and 1748 not upgraded.
Need to get 608 kB of archives.
After this operation, 1,549 kB of additional disk space will be used.
Get:1 http://archive.linux.duke.edu/kalilinux/kali kali-rolling/main amd64 hostapd amd64 2:2.6-18 [608 kB]
Fetched 608 kB in 2s (301 kB/s)
Selecting previously unselected package hostapd.
(Reading database ... 353210 files and directories currently installed.)
Preparing to unpack .../hostapd_2%3a2.6-18_amd64.deb ...
Unpacking hostapd (2:2.6-18) ...
Setting up hostapd (2:2.6-18) ...
Created symlink /etc/systemd/system/hostapd.service Γ’β β /dev/null.
update-rc.d: We have no instructions for the hostapd init script.
update-rc.d: It looks like a network service, we disable it.
Processing triggers for systemd (238-4) ...
Processing triggers for man-db (2.8.2-1) ...
Scanning processes...
Scanning candidates...
Scanning processor microcode...
Scanning linux images...
Running kernel seems to be up-to-date.
No services need to be restarted.
No containers need to be restarted.
User sessions running outdated binaries:
root @ session #3: bash[1599]
root@kali:~# hostapd
hostapd v2.6
User space daemon for IEEE 802.11 AP management,
IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator
Copyright (c) 2002-2016, Jouni Malinen <j@w1.fi> and contributors
usage: hostapd [-hdBKtv] [-P <PID file>] [-e <entropy file>] \
[-g <global ctrl_iface>] [-G <group>]\
[-i <comma-separated list of interface names>]\
<configuration file(s)>
options:
-h show this usage
-d show more debug messages (-dd for even more)
-B run daemon in the background
-e entropy file
-g global control interface path
-G group for control interfaces
-P PID file
-K include key data in debug messages
-f log output to debug file instead of stdout
-T = record to Linux tracing in addition to logging
(records all messages regardless of debug verbosity)
-i list of interface names to use
-S start all the interfaces synchronously
-t include timestamps in some debug messages
-v show hostapd version
root@kali:~#
Note: You can obtain the example of my
In my case, I ran into the following problem:
If you are not familiar with aircrack-ng, you can watch the video course at: https://h4cker.org/wireless
Let's start
Dnsmasq is going to act as our DNS and DHCP server, it can be installed with apt-get install dnsmasq. This is another super simple service with an easy to understand config file. Below is what I used, it defines a DHCP range, sets the router and DNS servers as 10.0.0.1 (options 3 and 6) and sets our upstream DNS server to one of OpenDNS's public DNS servers (server=208.67.222.222).
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
hostapd.conf file [here](https://github.com/The-Art-of-Hacking/h4cker/blob/master/wireless_resources/hostapd.conf).In my case, I ran into the following problem:
root@kali:# hostapd /etc/hostapd/hostapd.confI fixed it as follows:
Configuration file: /etc/hostapd/hostapd.conf
nl80211: Could not configure driver mode
nl80211: deinit ifname=wlan0 disabled_11b_rates=0
nl80211 driver initialization failed.
wlan0: interface state UNINITIALIZED->DISABLED
wlan0: AP-DISABLED
hostapd_free_hapd_data: Interface wlan0 wasn't started
root@kali:# sudo nmcli radio wifi off## Running aircrack-ng
root@kali:# sudo rfkill unblock wlan
root@kali:# sudo ifconfig wlan0 10.15.0.1/24 up
root@kali:# hostapd /etc/hostapd/hostapd.conf
Configuration file: /etc/hostapd/hostapd.conf
Using interface wlan0 with hwaddr 26:6f:2b:e1:48:d1 and ssid "corp-net"
wlan0: interface state UNINITIALIZED->ENABLED
wlan0: AP-ENABLED
If you are not familiar with aircrack-ng, you can watch the video course at: https://h4cker.org/wireless
Let's start
airmon-ng and then launch airodump-ng just to test our configuration:root@kali:~# airmon-ng start wlan1Now, let's run airodump-ng:
Found 3 processes that could cause trouble.
If airodump-ng, aireplay-ng or airtun-ng stops working after
a short period of time, you may want to run 'airmon-ng check kill'
PID Name
544 NetworkManager
576 dhclient
723 wpa_supplicant
PHY Interface Driver Chipset
phy0 wlan0 mac80211_hwsim Software simulator of 802.11 radio(s) for mac80211
phy1 wlan1 mac80211_hwsim Software simulator of 802.11 radio(s) for mac80211
(mac80211 monitor mode vif enabled for [phy1]wlan1 on [phy1]wlan1mon)
(mac80211 station mode vif disabled for [phy1]wlan1)
root@kali:~#
root@kali:~# airodump-ng wlan1monYou should see the corp-net SSID that is configured in the hostapd.conf file.
CH 12 ][ Elapsed: 6 s ][ 2018-11-27 23:02## Installing DHCP server
BSSID PWR Beacons #Data, #/s CH MB ENC CIPHER AUTH ESSID
26:6F:2B:E1:48:D1 -29 5 0 0 11 54 WPA TKIP MGT corp-net
BSSID STATION PWR Rate Lost Frames Probe
Dnsmasq is going to act as our DNS and DHCP server, it can be installed with apt-get install dnsmasq. This is another super simple service with an easy to understand config file. Below is what I used, it defines a DHCP range, sets the router and DNS servers as 10.0.0.1 (options 3 and 6) and sets our upstream DNS server to one of OpenDNS's public DNS servers (server=208.67.222.222).
interface=wlan0β git sources
dhcp-range=10.0.0.10,10.0.0.100,8h
dhcp-option=3,10.0.0.1
dhcp-option=6,10.0.0.1
server=208.67.222.222
log-queries
log-dhcp
@UndercodeTesting
@UndercodeSecurity
@UndercodeHacking
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
GitHub
h4cker/wireless_resources/hostapd.conf at master Β· The-Art-of-Hacking/h4cker
This repository is primarily maintained by Omar Santos (@santosomar) and includes thousands of resources related to ethical hacking, bug bounties, digital forensics and incident response (DFIR), ar...
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...