-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathmanual.php
50 lines (45 loc) · 2.12 KB
/
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
<?php include 'functions.php'; page_header(); ?>
<h1 style="color: lightgreen; text-align: left"><a href="proxy_enabled_manual.php">Enable 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="index.php">Automatic 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" required>
<br>
<input style="color: white" type="text" name="manual" placeholder="Enter Dork" required>
<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>
<input style="background-color:#1e1f23 ; color: white;" type="text" name=sub placeholder="Enter depth ( Depth is between 1 to 4)" max="4" minlength="1" maxlength="1" min="1" min="1" max="4" required>
</br>
<input style="background-color:#1e1f23; color: white; " type="text" name="file" placeholder="Enter the file name to be saved" required>
<br>
<input style="background-color: grey" type="submit" name="grawl" value="grawl">
<?php
error_reporting(0);
if($_POST['grawl'])
{
if($_POST['manual'] == NULL)
{
echo "<h10><div style='color:#4fe1be'>Please enter the dork</div><h10>";
exit;
}
elseif($_POST['sub'] < 1 || $_POST['sub'] > 4)
{
echo "<h10><div style='color:#4fe1be'>Range can only be between 1 and 4</div><h10>";
exit;
}
else
{
web_grawl_manual($_POST['search'],$_POST['manual'],$_POST['search_eng'],$_POST['file'],$_POST['sub']);
}
}
?>
</form>
<?php footer(); ?>