> For the complete documentation index, see [llms.txt](https://blog.conspirator.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://blog.conspirator.io/ctf-wiki/web.md).

# WEB

## XSS

* xss challs /usually) either simply require a popped alert, or have a user(cronjob) that visits a website whose cookies should get stolen
* '"<>;{}-=\`#/\* are all interesting chars. See if you can construct a javascript context with them in the dom
* Consider CSP and CSP bypasses

## SQLi

* Try inserting ' and SLEEP payloads, basically every dbms can be injected.
* dont rely too much on sqlmap

## IDOR

* try different values for parameters such as id=3  -> try 0,1,2,4,-1,100,10000,...

## File Upload

* Any File upload is suspicious, try changing mime, magic bytes, filename, content-type,... some combination might work
* try uploading weird files for weird error messages

## PHP

* Php alone is a vulnerability ;) so many gotchas, read the reference for every function, be aware of types and strong/weak comparisons etc.

## SSRF/LFI/RFI/XXE

* many more possible vulnerability types that may be more or less streightforward to exploit


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://blog.conspirator.io/ctf-wiki/web.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
