Skip to content

Commit 2969563

Browse files
committed
Switching references from defunct testphp to testasp site
1 parent 00003b2 commit 2969563

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

data/txt/sha256sums.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ c03dc585f89642cfd81b087ac2723e3e1bb3bfa8c60e6f5fe58ef3b0113ebfe6 lib/core/data.
188188
48797d6c34dd9bb8a53f7f3794c85f4288d82a9a1d6be7fcf317d388cb20d4b3 lib/core/replication.py
189189
0b8c38a01bb01f843d94a6c5f2075ee47520d0c4aa799cecea9c3e2c5a4a23a6 lib/core/revision.py
190190
888daba83fd4a34e9503fe21f01fef4cc730e5cde871b1d40e15d4cbc847d56c lib/core/session.py
191-
cbea3984adb13b53391ce4ecdd4dd0fca7384ecdd92d170263ba12ad62a196f9 lib/core/settings.py
191+
09737c0882fe49942216de43af12b3c8471a41fa00831a49b4dfd8462fd79308 lib/core/settings.py
192192
cd5a66deee8963ba8e7e9af3dd36eb5e8127d4d68698811c29e789655f507f82 lib/core/shell.py
193193
bcb5d8090d5e3e0ef2a586ba09ba80eef0c6d51feb0f611ed25299fbb254f725 lib/core/subprocessng.py
194194
70ea3768f1b3062b22d20644df41c86238157ec80dd43da40545c620714273c6 lib/core/target.py
@@ -241,7 +241,7 @@ f552b6140d4069be6a44792a08f295da8adabc1c4bb6a5e100f222f87144ca9d lib/techniques
241241
1966ca704961fb987ab757f0a4afddbf841d1a880631b701487c75cef63d60c3 lib/techniques/union/__init__.py
242242
30cae858e2a5a75b40854399f65ad074e6bb808d56d5ee66b94d4002dc6e101b lib/techniques/union/test.py
243243
a8a795f29ec6fd66482926f04b054ed492a033982c3b7837c5d2ea32368acec0 lib/techniques/union/use.py
244-
c8f1037cacae1068bdc050d44dfa29132051006d4ad022299509234427ca6a41 lib/utils/api.py
244+
c771212c97b534f47e74e972e12ada7d341a170c637ed2638cee6546f7b754d2 lib/utils/api.py
245245
442555ab85277aff7c9e0cf465ea5b0d28395c326f68363449b2d3941f4b6de2 lib/utils/brute.py
246246
da5bcbcda3f667582adf5db8c1b5d511b469ac61b55d387cec66de35720ed718 lib/utils/crawler.py
247247
a94958be0ec3e9d28d8171813a6a90655a9ad7e6aa33c661e8d8ebbfcf208dbb lib/utils/deps.py
@@ -490,7 +490,7 @@ cedf45d33461bd7e5400d06611a63c8a4ffae1a4510030c5696b9d46ed6a9883 plugins/generi
490490
1966ca704961fb987ab757f0a4afddbf841d1a880631b701487c75cef63d60c3 plugins/__init__.py
491491
5d72f0af46ff3c9e3fe80300e83cb78749132278e8db88915764a94d7130a04c README.md
492492
7ef0d0ea10d4b19283b1e380d521abb0fdd4c6bf1443b88f7b00af7947fc5e27 sqlmapapi.py
493-
11ecde5125921862d1f8fb0dc0a8871e3b2df2d0320deb7f396adb76430e192d sqlmapapi.yaml
493+
69ca771751f9d996cc07c2cd3f082667949148792ba9db26d08dc953fbf17815 sqlmapapi.yaml
494494
627d90f1194335b800cbc9cc78db6697cf9e02e193a83598e0d4d0abb55b63b8 sqlmap.conf
495495
65159b82795604069a2d14ccbd1f66e888a26b05db0401a1ddadb40c665c93dc sqlmap.py
496496
eb37a88357522fd7ad00d90cdc5da6b57442b4fec49366aadb2944c4fbf8b804 tamper/0eunion.py

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty import six
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.10.6.60"
23+
VERSION = "1.10.6.61"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

lib/utils/api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ def client(host=RESTAPI_DEFAULT_ADDRESS, port=RESTAPI_DEFAULT_PORT, username=Non
778778

779779
dbgMsg = "Example client access from command line:"
780780
dbgMsg += "\n\t$ taskid=$(curl http://%s:%d/task/new 2>1 | grep -o -I '[a-f0-9]\\{16\\}') && echo $taskid" % (host, port)
781-
dbgMsg += "\n\t$ curl -H \"Content-Type: application/json\" -X POST -d '{\"url\": \"http://testphp.vulnweb.com/artists.php?artist=1\"}' http://%s:%d/scan/$taskid/start" % (host, port)
781+
dbgMsg += "\n\t$ curl -H \"Content-Type: application/json\" -X POST -d '{\"url\": \"http://testasp.vulnweb.com/showforum.asp?id=1\"}' http://%s:%d/scan/$taskid/start" % (host, port)
782782
dbgMsg += "\n\t$ curl http://%s:%d/scan/$taskid/data" % (host, port)
783783
dbgMsg += "\n\t$ curl http://%s:%d/scan/$taskid/log" % (host, port)
784784
logger.debug(dbgMsg)
@@ -908,7 +908,7 @@ def client(host=RESTAPI_DEFAULT_ADDRESS, port=RESTAPI_DEFAULT_PORT, username=Non
908908

909909
elif command in ("help", "?"):
910910
msg = "help Show this help message\n"
911-
msg += "new ARGS Start a new scan task with provided arguments (e.g. 'new -u \"http://testphp.vulnweb.com/artists.php?artist=1\"')\n"
911+
msg += "new ARGS Start a new scan task with provided arguments (e.g. 'new -u \"http://testasp.vulnweb.com/showforum.asp?id=1\"')\n"
912912
msg += "use TASKID Switch current context to different task (e.g. 'use c04d8c5c7582efb4')\n"
913913
msg += "data Retrieve and show data for current task\n"
914914
msg += "log Retrieve and show log for current task\n"

sqlmapapi.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ paths:
213213
value:
214214
success: true
215215
options:
216-
url: "http://testphp.vulnweb.com/artists.php?artist=1"
216+
url: "http://testasp.vulnweb.com/showforum.asp?id=1"
217217
batch: true
218218
threads: 1
219219
invalidTask:
@@ -254,7 +254,7 @@ paths:
254254
value:
255255
success: true
256256
options:
257-
url: "http://testphp.vulnweb.com/artists.php?artist=1"
257+
url: "http://testasp.vulnweb.com/showforum.asp?id=1"
258258
cookie: "id=1"
259259
unknownOption:
260260
value:
@@ -293,7 +293,7 @@ paths:
293293
cookie: "id=1"
294294
setTarget:
295295
value:
296-
url: "http://testphp.vulnweb.com/artists.php?artist=1"
296+
url: "http://testasp.vulnweb.com/showforum.asp?id=1"
297297
responses:
298298
"200":
299299
description: Options set, or an API-level failure envelope.
@@ -345,7 +345,7 @@ paths:
345345
examples:
346346
basicUrlScan:
347347
value:
348-
url: "http://testphp.vulnweb.com/artists.php?artist=1"
348+
url: "http://testasp.vulnweb.com/showforum.asp?id=1"
349349
responses:
350350
"200":
351351
description: Scan started, or an API-level failure envelope.
@@ -529,7 +529,7 @@ paths:
529529
description: Target output-directory name.
530530
schema:
531531
type: string
532-
example: testphp.vulnweb.com
532+
example: testasp.vulnweb.com
533533
- name: filename
534534
in: path
535535
required: true
@@ -746,7 +746,7 @@ components:
746746
additionalProperties:
747747
$ref: "#/components/schemas/OptionValue"
748748
example:
749-
url: "http://testphp.vulnweb.com/artists.php?artist=1"
749+
url: "http://testasp.vulnweb.com/showforum.asp?id=1"
750750
cookie: "id=1"
751751
batch: true
752752
threads: 1

0 commit comments

Comments
 (0)