This website requires JavaScript.
Explore
Help
Sign In
PenTest
/
nmap
Watch
1
Star
0
Fork
0
You've already forked nmap
mirror of
https://github.com/nmap/nmap.git
synced
2025-12-25 00:49:01 +00:00
Code
Issues
Projects
Releases
Wiki
Activity
Files
395b4d215055e7c6cb971753517ba8394c8fa244
nmap
/
scan_engine.cc
kris
395b4d2150
Staying on the safe side when matching TCP flags on one part in scan_engine.cc. Instead of testing th_flags == TH_SYN|TH_ACK, it tests if (th_flags & TH_SYN|TH_ACK) == TH_SYN|TH_ACK. It's looks like it's done 'correctly' everywhere else. I can't really think of a real situation where we'd recieve any extra flags when doing a SYN scan, but we could (and it's better than having a false negative anyway).
2007-02-03 04:15:18 +00:00
140 KiB
Raw
Blame
History
View Raw
Reference in New Issue
View Git Blame
Copy Permalink