Tags: web
Rating:
**Description**
```
We love puzzle and we put a small puzzle for you ..
If you can't solve it study some math and come back again
--------------------------------------------
Challenge's URL :
http://blackfoxs.org/radar/puzzle
```

Checking the source, we find ****

On the puzzle_code_file.zip we get the index.php source code, the importan part:
```php
10000){
```
To bypass this we have to set a numeric **USER-AGENT > 10000** with less that 4 characteres = **9e9**
```python
#!/usr/bin/env python
import requests
import re
url = 'http://blackfoxs.org/radar/puzzle/'
headers = {
'User-Agent': '9e9',
}
r = requests.get(url, headers=headers)
m = re.search('id="desc">(.+?)</h2>', r.text)
if m:
found = m.group(1)
print found
```
