You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Objective: Identify all accessible endpoints via GET requests for https://jsonplaceholder.typicode.com/. See https://jsonplaceholder.typicode.com/
43
-
Query root-level resource endpoints.
44
-
Find root-level endpoints for https://jsonplaceholder.typicode.com/.
45
-
Only send GET requests to root-level endpoints with a single path component after the root. This means each path should have exactly one '/' followed by a single word (e.g., '/users', '/products').
46
-
1. Send GET requests to new paths only, avoiding any in the lists above.
47
-
2. Do not reuse previously tested paths.
48
-
"""
40
+
expected_prompt= ('Based on this information :\n'
41
+
'\n'
42
+
'Objective: Identify all accessible endpoints via GET requests for '
43
+
'https://jsonplaceholder.typicode.com/. See '
44
+
'https://jsonplaceholder.typicode.com/\n'
45
+
' Query root-level resource endpoints.\n'
46
+
' Find root-level endpoints for '
47
+
'https://jsonplaceholder.typicode.com/.\n'
48
+
' Only send GET requests to root-level '
49
+
'endpoints with a single path component after the root. This means each path '
50
+
"should have exactly one '/' followed by a single word (e.g., '/users', "
0 commit comments