One Hat Cyber Team
Your IP :
216.73.216.50
Server IP :
157.15.65.100
Server :
Linux 157-15-65-100.cprapid.com 5.14.0-362.24.2.el9_3.x86_64 #1 SMP PREEMPT_DYNAMIC Sat Mar 30 14:11:54 EDT 2024 x86_64
Server Software :
Apache
PHP Version :
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
nmap
/
scripts
/
Edit File:
auth-spoof.nse
local comm = require "comm" local shortport = require "shortport" description = [[ Checks for an identd (auth) server which is spoofing its replies. Tests whether an identd (auth) server responds with an answer before we even send the query. This sort of identd spoofing can be a sign of malware infection, though it can also be used for legitimate privacy reasons. ]] --- -- @output -- PORT STATE SERVICE REASON -- 113/tcp open auth syn-ack -- |_auth-spoof: Spoofed reply: 0, 0 : USERID : UNIX : OGJdvM author = "Diman Todorov" license = "Same as Nmap--See https://nmap.org/book/man-legal.html" categories = {"malware", "safe"} portrule = shortport.port_or_service(113, "auth") action = function(host, port) local status, owner = comm.get_banner(host, port, {lines=1}) if not status then return end return "Spoofed reply: " .. owner end
Simpan