Forwarded from AYSHACKS
Media is too big
VIEW IN TELEGRAM
HOW TO SURF INTERNET IN TERMUX
CAN LOAD ONLY BASIC WEBSITES WHICH SUPPORT HTML FORMAT โ ๏ธ
CAN LOAD ONLY BASIC WEBSITES WHICH SUPPORT HTML FORMAT โ ๏ธ
Forwarded from AYSHACKS
This media is not supported in your browser
VIEW IN TELEGRAM
Forwarded from AYSHACKS
Tutorial #16 HOW TO CRACK ANY ZIP FILE USING FCRACKZIP UTILITY
NOTE : For help u can type
HOW TO INSTALL :
There are basically two types of attack :
One is dictionary attack faster but less efficient (20-30% chances)
FOR THIS U NEED A DICTIONARY FILE CONTAINING A LIST OF BASIC PASSWORD โ ๏ธ
Syntax =
Another is bruteforce attack ~
Syntax =
Here :
a = all small letters
aA = small and capital letters
aA1 = small and capital letters and numbers
NOTE IF U DON'T HAVE ANY HINT TO THE PASSWORD U CAN USE aA1
-l = guess the length of the password
NOTE : For help u can type
fcrackzip --helpHOW TO INSTALL :
sudo apt-get install fcrackzipThere are basically two types of attack :
One is dictionary attack faster but less efficient (20-30% chances)
FOR THIS U NEED A DICTIONARY FILE CONTAINING A LIST OF BASIC PASSWORD โ ๏ธ
Syntax =
fcrackzip โu โD โp <dictionary file path> <zip file path>Another is bruteforce attack ~
Syntax =
fcrackzip -b -c 'a/aA/aA1" -l "guess how long can the password be, For eg =1-5,1-8,1-10" -u <zip file path>Here :
a = all small letters
aA = small and capital letters
aA1 = small and capital letters and numbers
NOTE IF U DON'T HAVE ANY HINT TO THE PASSWORD U CAN USE aA1
-l = guess the length of the password
Forwarded from AYSHACKS
Best dictionary contains more than 50,000 possible password list ๐ฅ
Forwarded from AYSHACKS
Media is too big
VIEW IN TELEGRAM
TUTORIAL #15 HOW TO HOST/APPOINT A TELEGRAM USERBOT ๐
Forwarded from AYSHACKS
This media is not supported in your browser
VIEW IN TELEGRAM
Matrix rain ๐ฆ
Forwarded from AYSHACKS
This media is not supported in your browser
VIEW IN TELEGRAM
Dialog
๐ฒ๐จ ๐ฅ
/|\ ๐ฅ๐ฅ
/ \ ๐ฅ๐ฅ๐ฅ
๐ฒ๐จ ๐ฅ
/|\ ๐ฅ๐ฅ
/ \ ๐ฅ๐ฅ๐ฅ
Forwarded from AYSHACKS
This media is not supported in your browser
VIEW IN TELEGRAM
Moon-Buggy A Termux Game ๐ฎ
Forwarded from AYSHACKS
AUTO HOST GENERATOR FOR PUBG ๐ฅ
Credits : @Ayushchatterjee
If you want to add new host simply type these commands :
COPY THE TEXT AND USE ECHO OUT :
Credits : @Ayushchatterjee
If you want to add new host simply type these commands :
touch /sdcard/hosts.txt && cat /dev/null > /sdcard/hosts.txtCOPY THE TEXT AND USE ECHO OUT :
echo "hosts here" >> sdcard/hosts.txtForwarded from AYSHACKS
This media is not supported in your browser
VIEW IN TELEGRAM
Forwarded from AYSHACKS
LINK : https://github.com/Ayush1311/PROJECT-ANONYMOUS/blob/master/pubgm_esp.lua
OPEN SOURCE ESP SCRIPT FOR PROJECT-ANONYMOUS [WRITTEN IN LUA]
EXECUTE WITH GAME GUARDIAN
NEW OFFSETS NEEDED
THOSE WHO HAVE CURRENT VERSION OFFSETS SEND IN @AYSHACKS2
PROJECT CREDITS @AyushChatterjee
OPEN SOURCE ESP SCRIPT FOR PROJECT-ANONYMOUS [WRITTEN IN LUA]
EXECUTE WITH GAME GUARDIAN
NEW OFFSETS NEEDED
THOSE WHO HAVE CURRENT VERSION OFFSETS SEND IN @AYSHACKS2
PROJECT CREDITS @AyushChatterjee
Forwarded from AYSHACKS
Non-Root ESP FULL SOURCE CODE
SHUT UP AND JUST COPY PASTE [MAKE YOUR OWN APP WITH SKETCHWARE OR SOME OTHER APP AND CREATE A BUTTON CALLED 'START ESP' AND AFTER THAT DECOMPILE OWN APP AND PLACE THE com FOLDER INSIDE IT]
WARNING : DON'T CHANGE THE import header [
ORIGINAL CREDITS : IDK, SOME CHINESE GUY MAYBE
DECOMPILED BY : @AyushChatterjee
++COMPILED WITH ZERO ERRORS
LANGUAGES USED : JAVA, AIDE(canvas,drawline,drawbox)
CHECK CHANNEL @AYSHACKS
I HAVE ALSO GIVEN SOUCE CODE OF LATEST INCEPTION APK AND OTHERS LONG AGO
SHUT UP AND JUST COPY PASTE [MAKE YOUR OWN APP WITH SKETCHWARE OR SOME OTHER APP AND CREATE A BUTTON CALLED 'START ESP' AND AFTER THAT DECOMPILE OWN APP AND PLACE THE com FOLDER INSIDE IT]
WARNING : DON'T CHANGE THE import header [
package com.Anonymous;]ORIGINAL CREDITS : IDK, SOME CHINESE GUY MAYBE
DECOMPILED BY : @AyushChatterjee
++COMPILED WITH ZERO ERRORS
LANGUAGES USED : JAVA, AIDE(canvas,drawline,drawbox)
CHECK CHANNEL @AYSHACKS
I HAVE ALSO GIVEN SOUCE CODE OF LATEST INCEPTION APK AND OTHERS LONG AGO
Forwarded from AYSHACKS
Hey there, This is @AyushChatterjee
Recently some guys were asking about how to use nftables in an android shell environment(with Termux etc).This message is for them first of all there is no pre-installed nftables Library inside the Android GNU and nftables bindings are far away from a unix like environment like Android.
What's left now ?
Well one way is left and you can try pyroute2 library which contains the dockerfile and bindings of nftables the command to install the framework is
ONE MORE THING AS EVERYONE KNOWS ROOT ACCESS IS NECESSARY FOR THIS OPERATION
GIVEN BELOW IS A CLEAR EXAMPLE OF HOW TO CALL THE IMPORT CLASS ~
Further Commands you can google it out ๐
Recently some guys were asking about how to use nftables in an android shell environment(with Termux etc).This message is for them first of all there is no pre-installed nftables Library inside the Android GNU and nftables bindings are far away from a unix like environment like Android.
What's left now ?
Well one way is left and you can try pyroute2 library which contains the dockerfile and bindings of nftables the command to install the framework is
pip install pyroute2 and requires python -V =/> 2.7.The command to install python is as you all know apt-get install python -y or pkg install python -y.You need to enter the python terminal with python3 command and then you can start importing the classes !ONE MORE THING AS EVERYONE KNOWS ROOT ACCESS IS NECESSARY FOR THIS OPERATION
GIVEN BELOW IS A CLEAR EXAMPLE OF HOW TO CALL THE IMPORT CLASS ~
from pyroute2.nftables.expressions import ipv4addr, verdict
#--FUNCTION--#
# # allow all traffic from 192.168.0.0/24 #
nft.rule('add', table='test0', chain='test_chain0', expressions=(ipv4addr(src='192.168.0.0/24'), verdict(code=1)))Further Commands you can google it out ๐