HEX
Server: Apache
System: Linux viper.innovativeinternet.net 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
User: thetradingroom (1095)
PHP: 8.3.25
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //ibin/idaloop
#!/usr/bin/perl

use strict;

# set array to 1 instead of 0
$[ = 1;

my ($field_sep, @argv, $file, @f); 

$field_sep = "\t";         # tab
@argv      = @ARGV;        # put all command line arg in @argv
$file      = pop(@ARGV);   # use the last argv as the file

open(FILE,"$file") or die $!;
while(<FILE>) {

  chomp;
  @f = split(/$field_sep/);

#  print "ida $f[0]&\n";
 system("ida $f[0]&\n");

}
close(FILE);