mirror of
https://git.photon.obnh.io/AXSY/whois.git
synced 2026-03-12 18:01:32 +00:00
Initial commit: mwhois with SCION AS support and decimal AS conversion
Based on mwhois by Antonios A. Chariton Modifications for SCION AS support by Olaf Baumert, Axpo Systems AG
This commit is contained in:
18
add-ip
Executable file
18
add-ip
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
ip = raw_input("Enter Network CIDR Block: ")
|
||||
body = ""
|
||||
print("You have now entered record editing mode. Enter a single @ line to save.")
|
||||
while True:
|
||||
buff = raw_input("")
|
||||
buff = buff.replace("\r\n", "\n")
|
||||
buff = buff.replace("\n", "\r\n")
|
||||
if(buff.replace("\r\n", "") == "@"):
|
||||
break
|
||||
body = body + buff + "\r\n"
|
||||
|
||||
filename = ip.replace("/", "-")
|
||||
d = open("db/ipv4/" + filename, "w+")
|
||||
d.write(body)
|
||||
d.close()
|
||||
print("Done!")
|
||||
Reference in New Issue
Block a user