-
Notifications
You must be signed in to change notification settings - Fork 55
/
proxy_enabled_manual.php
64 lines (63 loc) · 3.31 KB
/
proxy_enabled_manual.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php include 'functions.php'; page_header(); ?>
<h1 style="color: red; text-align: left"><a href="index.php">Disable Proxy</a></h1>
<h1 style="color: lightgreen; text-align: left"><a href="configure.php">Configure Proxy</a></h1>
<h1 style="color: lightgreen; text-align: left"><a href="manual.php">Manual Grawl</a></h1>
<h1 style="color: lightgreen; text-align: right"><a href="miscellaneous.php">Dorks from Scratch</a></h1>
<div class="overlay-content">
<form action="#" method="POST">
<input style="background-color:#1e1f23; color: white; " type="text" name="search" placeholder="Enter the domain name">
<br>
<select style="background-color:#1e1f23 ; color: white;" type="text" name="proxy_name" required>
<option value="select" selected>Select a proxy</option>
<option value=<?php echo readfile("Prox/ScraperAPI.txt");?>>Scraper API</option>
<option value=<?php echo readfile("Prox/ScrapingDog.txt");?>>Scraping Dog</option>
<option value=<?php echo readfile("Prox/ZenScrape.txt");?>>Zen Scrape</option>
</select>
<br>
<select style="background-color:#1e1f23 ; color: white;" type="text" name="search_eng" required>
<option value="select" selected>Select the search engine</option>
<option value="https://www.bing.com/search?q=site:">Bing</option>
<option value="https://www.google.com/search?q=site:">Google (Best Results)</option>
<option value="https://search.yahoo.com/search?q=site:">Yahoo</option>
</select>
<br>
<select style="background-color:#1e1f23 ; color: white;" type="text" name="dork_type" required>
<option value="select" selected>Select the dork file</option>
<option value="dorks/dork_filetype.txt">File Types</option>
<option value="dorks/dork_login_panel.txt">Login Panels</option>
<option value="dorks/dork_sql_A.txt">SQL Injection A</option>
<option value="dorks/dork_sql_B.txt">SQL Injection B</option>
<option value="dorks/dork_sql_C.txt">SQL Injection C</option>
<option value="dorks/dork_sql_D.txt">SQL Injection D</option>
<option value="dorks/dork_sql_E.txt">SQL Injection E</option>
<option value="dorks/dork_sql_F.txt">SQL Injection F</option>
<option value="dorks/dork_sql_G.txt">SQL Injection G</option>
<option value="dorks/dork_error_messages.txt">Error Messages</option>
<option value="dorks/dork_ext.txt">Extension</option>
<option value="dorks/dork_java.txt">Java</option>
<option value="dorks/dork_javascript.txt">JavaScript</option>
<option value="dorks/dork_net.txt">.NET</option>
<option value="dorks/dork_php.txt">PHP</option>
<option value="dorks/my_dorks.txt">My Dorks</option>
</select>
<br>
<input style="background-color:#1e1f23; color: white; " type="text" name="file" placeholder="Enter the file name to be saved">
<br>
<input style="background-color: grey" type="submit" name="grawl" value="grawl">
<?php
error_reporting(1);
if($_POST['grawl'])
{
if($_POST['search'] == NULL || $_POST['file'] == NULL || $_POST['proxy_name'] == NULL)
{
echo "<h10><div style='color:#4fe1be'>Please fill out the empty fields</div><h10>";
exit;
}
else
{
web_grawl_proxy_en($_POST['search'],$_POST['search_eng'],$_POST['file'],$_POST['dork_type'],$_POST['proxy_name']);
}
}
?>
</form>
<?php footer(); ?>