###### tags: `CTF` `WEB`
# WEB expolitation
## Looking for somethings in source codes
### Scavenger Hunt

ctrl + U

The second part was hidden in CSS

How can I keep Google from indexing my website?

We use robot.txt to disallow google web spiders to crawl our websites!!><

Store information in Mac

.DS_Store was specified to store the current folder on Mac

---
### GET a HEAD


Sourece code


---
### Where are the robots



---
### Dont-use-client-side


---
### It's my birthday


this website provide the md5 collision
https://www.mscs.dal.ca/~selinger/md5collision/

---
Redirect phpWEB
\
---
### Search source



---
### picobrowser
crul: it easily allows you to control the header
---
## SQL
### SQL Direct

show databases
>PostgreSQL
```shell=
\bt
```
>Mysql
```shell=
show tables
```
>SQLite3
```shell=
.tables
```
>To interect with database
```shell=
\dt
```

```sql=
select * from flags;
```
