Skip to main content

What is IP Obfuscation ? How it's working ? how to use Cuteit tool ?

 


What is IP  Obfuscation?

    Which is a method to hide or convert a doted format IP address (e.g. 192.168.192.2)  into an Integer or Hexadecimal value or Octal form by using some mathematical formula. It’s a kind of method to spoof the human eyes and web security services.

dot format to Decimal Conversion

 

piratesshield.com 👉  [172.67.129.3]

to translate

(172x2563)+(67×2562)+(129×2561)+(3×2560) = 2890105091

Now you can use https://2890105091 to access piratesshield.com


This is one of the ways to do IP  Obfuscation.  The tool ‘ Cuteit ‘ is A simple python tool to help you to social engineer, bypass whitelisting firewalls, potentially break regex rules for command-line logging looking for IP addresses and obfuscate cleartext strings to C2 locations within the payload.


HOW TO USE CUTEIT ?

Download & Install Cuteit from the below link
git :
 
git clone https://github.com/D4Vinci/Cuteit.git
Direct link:
https://github.com/D4Vinci/Cuteit/archive/master.zip
 usage: Cuteit.py [-h] [--disable-coloring] ippositional arguments:ip                  IP you want to convert optional arguments:-h, --help          show this help message and exit--disable-coloring  Disable colored printing
 
 

Screenshots :




Comments

Popular posts from this blog

KARMA - Search for leaked Emails and Passwords

Hi Everyone, In this article we going to introduce the tool is KARMA.Its used to collect pwned Email address and passwords from pwndb. The tool is written in python3. So, you must need Python3 inside your machine . INSTALL sudo apt install tor python3 python3-pip git clone https :// github . com / decoxviii / karma . git ; cd karma sudo -H pip3 install -r requirements.txt python3 bin/karma.py --help TEST All the tests were done in  Debian/Ubuntu . Search emails with the password:  123456789 python3 bin/karma.py search '123456789' --password -o test1 Search emails with the local-part:  johndoe python3 bin/karma.py search 'johndoe' --local-part -o test2 Search emails with the domain:  hotmail . com python3 bin/karma.py search ' hotmail . com ' --domain -o test3 Search email password:  johndoe@unknown.com python3 bin/karma.py target 'johndoe@unknown.com' -o test4 DEMO VIDEO