Advertisement
RebelRose

Dedmap IP scan

Jul 9th, 2025 (edited)
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.15 KB | None | 0 0
  1. pkg install git python build-essential cmake ninja libopenblas libandroid-execinfo patchelf binutils-is-llvm
  2.  
  3. pip3 install setuptools wheel packaging pyproject_metadata cython meson-python versioneer
  4.  
  5. python3 -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")'
  6.  
  7. MATHLIB=m LDFLAGS="-lpython3.12" pip3 install --no-build-isolation --no-cache-dir numpy
  8. pip install funcy
  9. git clone https://github.com/7Ragnarok7/DEDMAP
  10. cd DEDMAP
  11. chmod +x install.sh
  12. bash  ./install.sh
  13. ./dedmap -d google.com yahoo.com facebook.com localhost
  14. ./dedmap localhost
  15. ./dedmap -h
  16. ./dedmap -nr 1.1.1.1-255
  17. (Perform a dns lookup on all the live targets in the network)
  18. [['-s' '--silent']
  19.  ['-b' '--black']
  20.  ['-n' '--net']
  21.  ['-m' '--mode']
  22.  ['-d' '--dns']
  23.  ['-r' '--rdns']
  24.  ['-t' '--tcp']
  25.  ['-u' '--udp']
  26.  ['-h' '--help']
  27.  ['-v' '--verbose']
  28.  ['-p' '--port']
  29.  ['-o' '--out']]
  30.  
  31. ./dedmap -nt 1.1.1.0-255
  32. (To scan only the hosts which are alive in the network)
  33.  
  34. ./dedmap 1.1.1.1-100 google.com
  35. (Perform a tcp scan on all the hosts without pinging to bypass firewall icmp block)
  36.  
  37. dedmap -p 20 1.1.1.1
  38. dedmap -p top10 2.2.2.2
  39.  dedmap -p 20,21,22 1.1.1.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement