Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions 0xscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def reverseIP():
output = resp
print("├── Host: {}".format(host))
for lines in str(output).splitlines():
print("\t├── {}".format(lines))
print("\t├── {}".format(lines))
## ./END Reverse IP ##

## ./START http Header ##
Expand All @@ -63,7 +63,7 @@ def httpHeader():
output = resp.strip().lstrip()
print("├── Host: {}".format(host))
for lines in str(output).splitlines():
print("\t├── {}".format(lines))
print("\t├── {}".format(lines))
## ./END http Header ##

## ./START TCP Port Scan ##
Expand All @@ -73,7 +73,7 @@ def TCPport():
output = resp.strip().lstrip()
print("├── Host: {}".format(host))
for lines in str(output).splitlines():
print("\t├── {}".format(lines))
print("\t├── {}".format(lines))
## ./END TCP Port Scan ##

## ./START Extract Links from Page ##
Expand All @@ -83,7 +83,7 @@ def ELFP():
output = resp.strip().lstrip()
print("├── Host: {}".format(host))
for lines in str(output).splitlines():
print("\t├── {}".format(lines))
print("\t├── {}".format(lines))
## ./END Extract Links from Page ##

## ./START Extract Links from Page ##
Expand All @@ -93,7 +93,7 @@ def IPlocation():
output = resp.strip().lstrip()
print("├── Host: {}".format(host))
for lines in str(output).splitlines():
print("\t├── {}".format(lines))
print("\t├── {}".format(lines))

## ./END Extract Links from Page ##

Expand All @@ -104,7 +104,7 @@ def DNSlookup():
output = re.sub(';; Truncated, retrying in TCP mode.', '', resp).strip().lstrip()
print("├── Host: {}".format(host))
for lines in str(output).splitlines():
print("\t├── {}".format(lines))
print("\t├── {}".format(lines))
## ./END DNS lookup ##

def main():
Expand Down