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
5 changes: 3 additions & 2 deletions chapters/sql.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

== Infiltrating in a database
[discrete]
===== Samuel Sabogal Pardo
Expand Down Expand Up @@ -247,7 +247,7 @@ import requests
from string import printable

accum = ""
for i in range(40):
for i in range(1, 40):
for letter in printable:
accum += letter

Expand All @@ -259,6 +259,7 @@ for i in range(40):
print("nope")
else:
print(f"We found the character: {letter}")
break

print(accum)
----
Expand Down