Skip to content

Commit

Permalink
new
Browse files Browse the repository at this point in the history
  • Loading branch information
i0gan committed Oct 27, 2021
1 parent c0a4cf9 commit 31e92e2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 31 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,19 +162,19 @@ header = {
}

def submit():
with open(flag_file) as flag_txt:
flags = flag_txt.readlines()
for flag in flags:
flag = flag.strip()
d = ''
d += flag
print(d)
try:
res = requests.post(url,data=d,headers=header,timeout=2)
li(res.text)
except:
li('connect fail!')
continue
with open(flag_file) as flag_txt:
flags = flag_txt.readlines()
for flag in flags:
flag = flag.strip()
d = ''
d += flag
print(d)
try:
res = requests.post(url,data=d,headers=header,timeout=2)
li(res.text)
except:
li('connect fail!')
continue
submit()
```

Expand Down
18 changes: 0 additions & 18 deletions update.md

This file was deleted.

0 comments on commit 31e92e2

Please sign in to comment.