Posts

Showing posts with the label Ethical Hacking

Bytecode Viewer download & install in kali linux command

Image
This package contains Bytecode Viewer (BCV). It is an Advanced Lightweight Java Bytecode Viewer, GUI Java Decompiler, GUI Bytecode Editor, GUI Smali, GUI Baksmali, GUI APK Editor, GUI Dex Editor, GUI APK Decompiler, GUI DEX Decompiler, GUI Procyon Java Decompiler, GUI Krakatau, GUI CFR Java Decompiler, GUI FernFlower Java Decompiler, GUI DEX2Jar, GUI Jar2DEX, GUI Jar-Jar, Hex Viewer, Code Searcher, Debugger and more. There is also a plugin system that will allow you to interact with the loaded classfiles, for example you can write a String deobfuscator, a malicious code searcher, or something else you can think of. You can either use one of the pre-written plugins, or write your own. It supports groovy scripting. Once a plugin is activated, it will execute the plugin with a ClassNode ArrayList of every single class loaded in BCV, this allows the user to handle it completely using ASM. It’s currently being maintained and developed by Konloch. Official Website : bytecode-viewer Installed...

SMS Spamming Tool command for Termux

Image
pkg install git python pip install requests git clone https://github.com/MrHarshArora/CyberGhostWeapon-SMS.git cd CyberGhostWeapon-SMS chmod +x sms.py python3 sms.py The commands in the snippet perform the following actions. pkg install git python: Installs Git and Python packages. pip install requests: Installs the Requests library for Python. git clone https://github.com/MrHarshArora/CyberGhostWeapon-SMS.git: Clones the repository from the specified URL. cd CyberGhostWeapon-SMS: Changes the current directory to the cloned repository. chmod +x sms.py: Gives execute permissions to the sms.py script. python3 sms.py: Runs the sms.py script using Python 3. Please make sure you have the necessary permissions and internet connectivity for the installation and execution of these commands.