-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
79 lines (63 loc) · 2.33 KB
/
index.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href='text.css' rel='stylesheet' type='text/css'>
<title>Image transactions</title>
<!--<style>
.imageform{
border:2px solid;
padding:35px solid;
width:80%;
height:20%;
}
</style> !-->
<div class="form-style-10">
<h1 align="center">Imagebook <span> An Exploit Directory </span></h1>
</head>
<body>
<form class="imageform" action="upload.php" method="post" name="readfile" enctype="multipart/form-data">
<table cellpadding="10" align="center" rules="all" frame="box">
<tr>
<td colspan="2">
<h3>
<table cellpadding="10" align="center" rules="all" frame="box">
<tr>
<td colspan="2">
<div class="section"><span>1</span>Upload Your Image Here</div>
<div class="inner-wrap">
<label>Upload Image File Here(<1MB)<br><br /><input type="file" name="fileupload" /></br></label>
</td>
</tr>
<tr>
</h3>
</td>
</tr>
<tr>
<td>
<div class="section"><span>2</span>Upload Detail TXT file</div>
<div class="inner-wrap">
<label for="txt-file">Open File(*.txt):<br><br /><input type="file" name="file1" /></br></label>
</td>
</tr>
<tr valign="top">
<td>
<div class="section"><span>3</span>Select TXT categorization</div>
<div class="inner-wrap">
<label>Field Terminated By:</label><br /><!--what character to terminate as column into table-->
<input type="radio" name="deli" value=";" />Simicolum<br /><!--terminated by simicolum-->
<input type="radio" name="deli" value=" " />Tab<br /><!--terminated by tab-->
<input type="radio" name="deli" value="," />Comma<br /><!--terminated by comma-->
<input type="radio" name="deli" value="|" />Herizontal Bar<br /><!--terminated by herizontal bar-->
</td>
</tr>
<tr>
<td colspan="2" align="right">
<div class="button-section">
<input type="submit" name="submit" value="Submit"><!--button to submit the form to read data from the file-->
</td>
</tr>
</table>
</form>
</body>
</html>