Azuhmier icon

get_request.pl

Azuhmier | PRO | 10/12/20 04:18:28 AM UTC (Edited) | 0 ⭐ | 1198 👁️ | Never ⏰ | []
Perl |

1.44 KB

|

None

|

0 👍

/

0 👎

#!/usr/bin/perl;
use warnings;
use strict;
use LWP::Simple;
use LWP::UserAgent;
use utf8;
no warnings 'utf8';
 
# Set up LWP object
my $ua = LWP::UserAgent->new(timeout => 10);
$ua->agent('Mozilla/5.0');
 
# Start timer
my $start = time;
 
# Get urls from 'url_only.txt'
my @url;
my $fname_urls = glob('~/hmofa/pastebin/code_examples/goto_files/url_only.txt');
open my $fh, '<' , $fname_urls ;
  while (my $line = <$fh>) {
    $line =~ m/https:\/\/pastebin.com\/[^\s]+/;
    push @url, $&;
  }
close $fh;
 
# Check if $dirname is available
my $dirname = 'archive';
my $DestFolder = glob('~/hmofa/pastebin/Pastebin_Archives/' . $dirname);
my $FileNumber = 2;
 
if (-d $DestFolder) {
  while (-d $DestFolder . '_' . $FileNumber ) {
    $FileNumber++;
  }
  $DestFolder = $DestFolder . '_' . $FileNumber;
}
 
print $DestFolder;
mkdir $DestFolder;
 
# Fetch and Store html files
my @fh; # will store the filehandles.
my @html;
my $i=0;
 
for (@url) {
    my $response = $ua->get($_);
    push @html, $response->decoded_content;
    my $start = time;
 
    open $fh[$i], '>', $DestFolder . "/file-$i" or die $!;
      if ($html[$i]) {
      print {$fh[$i]} $html[$i];
      }
      else {
        my $DeadString = $_ . "\n" . "DEAD_LINK";
      print {$fh[$i]} $DeadString;
      }
    close $fh[$i];
 
    $i++;
    while ( (time - $start) < 2){}
}
 
my $duration = time - $start; print "\nExecution Time: $duration s\n";
 
 
 
 

Comments

  • LighTomy icon
    02/09/26 04:08:57 AM UTC
    CSS |

    0 B

    |

    0 👍

    /

    0 👎

    ✅ Leaked Exploit Documentation:
     
    https://docs.google.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp=sharing
     
    This made me $13,000 in 2 days.
     
    Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 38% — they will simply correct the exchange rate.
    The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
     
    Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without any verification from Swapzone — instant swap).