Jump to content

Fi8sVrs

Active Members
  • Posts

    3206
  • Joined

  • Days Won

    87

Everything posted by Fi8sVrs

  1. Table of Contents Tip 1: Enable Passcode Lock on Your iPhone 3 Tip 2: Disable Features that Could Be Accessed Without Entering the Passcode 5 Tip 3: Overcoming Privacy Issues Due to the Inherent Design of the iPhone 6 Tip 4: Erase All the Data Before Return, Repair, or Resale of Your iPhone 9 Tip 5: Regularly Update Your iPhone-s Firmware 11 Tip 6: To Jailbreak or Not to Jailbreak 12 Tip 7: Enable Safari-s Privacy and Security Settings on the iPhone 13 Tip 8: Using Bluetooth, Wi-Fi, and Email Securely 16 Tip 9: Enable Restrictions 18 Tip 10: Enable Find My iPhone 18 http://www.mcafee.com/us/resources/white-papers/foundstone/wp-top-10-iphone-security-tips.pdf
  2. diacritice
  3. GoLISMERO help you to map an web application, displaying as confortable format for security auditor and preparing them for intergrate with other web hacking tools as w3af, wfuzz, netcat, nikto, etc Features: Map a web aplication. Show all links and forms params as confortable format. Save results with some formats: text, cvs, html, raw (for parsing with bash script) and wfuzz script. Detect common vulnerabilites of web application. Filter web information retaining only what is important. Many other features you can find very useful. Download https://code.google.com/p/golismero/ Source
      • 1
      • Upvote
  4. Overview VoIP Hopper is a GPLv3 licensed security tool, written in C, that rapidly runs a VLAN Hop security test. VoIP Hopper is a VoIP infrastructure security testing tool but also a tool that can be used to test the (in)security of VLANs. Get more details on the what and why here. Requirements libpcap c compiler Linux OS VoIP Hopper was originally intended for BackTrack Linux. The development platform is now Ubuntu 11.04. It has also been tested to compile perfectly on Fedora 15. Screen Shots Installation Steps Download Source
  5. pocnitori de mana - din injectoare de de la tractoare si armate cu un cui si un elastic din manusa de cauciuc.
  6. ce mai face familia Petrescu?
  7. ce placa video e asta? Device Description: NVIDIA® nForce MIDI UART Hardware Ids: ACPI\PNPB006 *PNPB006
  8. Fi8sVrs

    Hi All..

    you can make a logo for n-it.ro ? news it, mobile phones, design, hardware, gadget, software, internet, gps...
  9. gramatica, vezi si... Las Fierbinti - Trailer 2010 | 220.ro
  10. Author(s) Joe Stewart Latest Version 0.1 Description Foregone is a forensic file recovery tool written in Perl. It was inspired by the Air Force Office of Special Investigations' forensic tool known as "Foremost", which uses defined headers and footers of certain file types to search a raw disk image and extract files with those characteristics. Foregone is a Perl implementation of the same technique with some added features: Only searches for headers starting on a block boundary, for a speed increase Uses compression to reject interleaved blocks of dissimilar files Foregone should not be considered an investigative-level forensic tool, but merely a utility that may help you recover files from a corrupted filesystem. #!/usr/bin/perl use Compress::Zlib; ## foregone.pl - recover files of a given type from a raw disk image even if ## interleaved with other blocks (blocks must be in correct order) ## ## (c)2003-2006 Joe Stewart <jstewart@lurhq.com> ## ## Foregone is released under the GNU General Public License. ## examples ## ## PDF ## ## my $header = "\x25\x50\x44\x46\x2D"; ## my $footer = "\x25\x25\x45\x4F\x46"; ## my $extension = "pdf"; ## my $mustfind = ""; ## my $mustfind2 = ""; ## GNUCASH ## ## my $header = "<?xml version=\"1.0\"?>\n<gnc-"; ## my $footer = "<!-- End: -->"; ## my $extension = "xml"; ## my $mustfind = "<act"; ## my $mustfind2 = "<trn"; ## JPEG ## my $header = "\xff\xd8\xff\xe0"; my $footer = "\xff\xd9"; my $extension = "jpg"; my $mustfind = ""; my $mustfind2 = ""; ## Blocksize of filesystem being read ## my $blocksize = 1024; ## Threshold to reject blocks based on compressed size ## compares initial block size when compressed with subsequent block ## sizes when compressed ... good at rejecting dissimliar types of data ## More than this zthreshold percent deviation will result in rejection ## Adjust as needed depending on how many bad blocks you get in output my $zthreshold = 50; ## maximum size of any output file ## my $maxbytes = 3000000; ## directory to write recovered files. Will be created if it doesn't exist ## my $recoverdir = "foregone-recover"; my $image = $ARGV[0]; my $size = (stat($image))[7]; my $buf = ""; my $buflength = length($header); my $found = 0; my $outbytes = 0; my $pos = 0; die "Usage: $0 <disk image>\n" unless $image; open (IN, $image) or die "Could not open $image : $!\n"; unless (-e "$recoverdir") { mkdir("$recoverdir", 0755) or die "Could not create $recoverdir : $1\n"; } while ($pos < $size) { my $blockpos = $pos; read(IN,$buf,$buflength) or last; $percent = ($pos / $size) * 100; printf("Looking at first %s bytes of block at offset $pos (%.2f%% done)\r", $buflength, $percent); if ($buf eq $header) { print "\nHeader match at $pos\n"; print "Extracting file...\n"; &extract_file; } $pos += $blocksize; seek(IN,$pos, 0) or die "\ncould not seek to $pos"; } print "\nFinished.\n"; close IN; sub extract_file { $found++; my $filename = sprintf("recovered.%05d.%s", $found, $extension); open(OUT, ">$recoverdir/$filename") or die "Couldn't write output file!\n"; print OUT $buf; my $tmpblocksize = $blocksize - $buflength; while ($pos < $size) { read(IN,$block,$tmpblocksize) or last; $tmpblocksize = $blocksize; my $zblock = compress($block); my $zblocklength = length($zblock); if (!$zfirstblock) { $zfirstblock = $zblocklength; $lowerlimit = ((100 - $zthreshold) / 100) * $zfirstblock; $upperlimit = ((100 + $zthreshold) / 100) * $zfirstblock; } else { if ($block !~ /$footer/) { # compressed block size is too different. reject it. if ($zblocklength > $upperlimit || $zblocklength < $lowerlimit) { print "Rejected block: compressed size = $zblocklength : $lowerlimit < $zfirstblock > $upperlimit\n"; next; } } } if ($mustfind) { next unless $block =~ /$mustfind|$mustfind2/; } if ($block =~ /$footer/ || $outbytes + $blocksize > $maxbytes ) { my ($blockt, $garbage) = split(/$footer/, $block); print OUT $blockt . $footer; $outbytes += length($blockt) + length($footer); if (length($blockt) + length($footer) == $blocksize) { print "Failed to truncate last block\n" } last; } $outbytes += $blocksize; print OUT $block; } print "Wrote $recoverdir/$filename ($outbytes bytes)\n"; $outbytes = 0; close OUT; } Source
  11. Microsoft’s Windows XP operating system turns 10-years old today. Windows XP released to retailers on October 25, 2001. Codenamed whistler, Windows XP development started in 1999 when the operating system was known as Windows Neptune. Windows XP (which stands for experience) was developed for around 18 months and released to end users on October 25, 2001. Microsoft Chairman Bill Gates and Vice President Jim Allchin delivered the final Windows XP code to PC makers via helicopters during the RTM party on August 24, 2001. The helicopters, decorated with Window XP and PC maker logos, each received gold master copies of the operating system before making their way back to each OEM’s headquarters. Windows XP was designed as the successor to Windows 2000 and Windows ME and ushered in a new green and blue task-based GUI. Microsoft added in a number of visual effects to Windows XP including drop shadows and various animations across the operating system. Microsoft also shipped a “bliss” default wallpaper that featured a landscape of the Napa Valley in California. Windows XP’s radical new theme engine kick started a craze of “XP styles” for third-party skinners. Microsoft broke with tradition for Windows XP and introduced a Service Pack 2 with a number of new features for the operating system. SP2 was designed to secure Windows XP after a number of high profile exploits hit Windows XP, including the Blaster worm in 2003 and the Sasser worm in May 2004. Service Pack 2, introduced in late 2004 added WPA Wi-Fi support, an ad blocker for Internet Explorer 6 and bluetooth support. Microsoft also shipped a major update to its inbuilt firewall and Data Execution Support. The software giant also included Windows Security Center, designed to warn users if their antivirus software is not installed or is out of date. Windows XP still dominates modern day computing and is expected to go “end of life” on April 8, 2014. Windows 7 only recent passed Windows XP usage worldwide. Windows 7 now accounts for 40.21% of all global desktop operating system usage across the world. Windows XP usage slipped to 38.64% in the month of October according to StatCounter. The drop in XP usage has been consistent since Windows 7?s launch. Microsoft is urging businesses to move to Windows 7 instead of waiting for Windows 8. The software maker penned a blog post earlier this month, celebrating 10 years of Windows XP by urging XP users to move to Windows 7. Around 90% of businesses are committed to migrating away from Windows XP and Office 2003 to modern software such as Windows 7 and Office 2010, according to Microsoft. Microsoft has promised to reinvent Windows with Windows 8 and unveiled its “reimagined” Windows 8 last month. The new interface features a Start Screen with identical styling to the company’s Windows Phone software. Microsoft is planning to allow application developers to create Metro style apps that interact with the Start Screen and operating system. Microsoft’s unique approach will also provide rich and easy integration across applications for developers. Microsoft is expected to make Windows 8 available on ARM and Intel based tablets in mid-2012. Microsoft’s bold choice of a touch based user interface as a replacement for the Windows Start Menu speaks volumes about how the company is positioning Windows 8. In eleven years we’ll likely be celebrating the history of Windows 8 and looking forward to a new release in a whole different world. Happy 10th birthday Windows XP. Source
  12. probabil se refera la cURL
  13. designul e ok
  14. Fi8sVrs

    Ajutor php

    Cakeslice?
  15. The Google AI Challenge is all about creating artificial intelligence, whether you are a beginning programmer or an expert. Using one of the easy-to-use starter kits, you will create a computer program (in any language) that controls a colony of ants which fight against other colonies for domination. It only takes 5 minutes to submit one of the starter kits to the website and watch your ant colony fight for domination against colonies created by other people from around the world. From there check out the tutorials on how to locally run your bot and begin programming! Website: AI Challenge
  16. Fi8sVrs

    Google Dart

    Dart (originally called Dash) is a web programming language developed by Google. It was unveiled at the GOTO conference in Aarhus, 2011 October 10-12.[2] The goal of Dart is "ultimately to replace JavaScript as the lingua franca of web development on the open web platform."[3] Reason for a new language Dart is intended to solve JavaScript's problems (which, according to a leaked memo,[4] cannot be solved by evolving the language) while offering better performance, the ability "to be more easily tooled for large-scale projects" and better security features.[5] Google engineers are developing a cloud-based IDE called Brightly, which will perhaps be the first Dart application. Google will offer a cross compiler that compiles Dart to ECMAScript 3 on the fly, for compatibility with non-Dart browsers. There will also be a facility to convert typed Closure code to Dart.[6] Google will also integrate a native VM into Chrome and encourage competitors to do the same with their browsers. The Dart VM and Dart Cross Compiler could be available in late 2011.[5] Example main() { print('Hello World!'); } Paradigm(s) optionally typed Appeared in 2011 Designed by Google Developer Google Preview release 0.02[1] (October 14, 2011; 4 days ago) Influenced by Java, JavaScript, CoffeeScript, Go Usual filename extensions .dart Website dartlang.org Source
  17. a mai fost, si e down http://rstcenter.com/forum/22220-vpn-moka-momentan.rst
  18. Fi8sVrs

    repl.it

    The repl.it project is an attempt to create an online environment for interactively exploring programming languages. It provides a fully-featured terminal emulator and code editor, powered by interpreter engines for more than 15 languages. All our interpreters are written in (or compiled to) JavaScript, and run completely on the user's device, regardless or whether it's a desktop, laptop or phone. The repl.it code is open source and is available on GitHub. Language: Classic QBasic: Structured programming for beginners. Forth: An interactive stack-oriented language. Practical Ruby (beta): A natural dynamic object-oriented language. Python: A dynamic language emphasizing readability. Lua: A lightweight multi-paradigm scripting language. Scheme: An elegant dynamic dialect of Lisp. Esoteric Emoticon: Programming with an extra dose of smile. Brainfuck: A pure Turing machine controller. LOLCODE: The basic language of lolcats. Unlambda: Functional purity given form. Bloop: Nothing but bounded loops. Web JavaScript: The de facto language of the Web. Javascript.next: The JavaScript of tomorrow. Move: The easy way to program the web. Kaffeine: Extended JavaScript for pros. CoffeeScript: Unfancy JavaScript.
  19. Below you will find my collection of 10 best online applications that would be very useful for web designers and web developers. This collection was assorted based by importance and personal opinion. We understand that there are many other great tools out on the web, but these listed here are some of the best! We hope that this article will help/improve the workflow of designers and developers alike. 1. Google Apps Google Apps provides many features all in one place. A customisable start page, generous 6MB of space in provided in the gmail account, files can easily be backed up to the email account. Shared calendar feature is provided with text messaging. Use your own domain name to provide domain specific email addresses. 2. W3C Markup & CSS Validation Services This validator checks the markup validity of Web documents in HTML, XHTML, SMIL and MathML. If you want to validate specific content such as RSS/Atom feeds or CSS stylesheets, MobileOK content, or to find broken links, other validators and tools are available there. 3. Adobe BrowserLab Adobe BrowserLab is an online service that helps to ensure that your web content is displayed as you wanted. Accurately preview web pages across multiple browsers and operating systems, navigate links, and use diagnostic tools to efficiently optimize websites. 4. net2FTP Net2ftp is a web-based FTP client written in PHP. With it’s help you can navigate the FTP server, upload files, download one or multiple files, zip and unzip archives on FTP server, and install software. 5. CSS-sandbox CSS-sandbox is a simple web toy that lets you explore CSS in real time. Just click and see the effect, no Reload needed. It’s very fast and funny. Once you’re satisfied with the style of the Sandbox, roll your mouse over the handy CODE button. A panel will pop, showing all the necessary CSS code to apply that formatting to your web site. 6. LaunchSplash LaunchSplash provides tools a web designer needs to create an awesome looking “Coming Soon” Landing Page for your domain easily in a few clicks. So if you are working on a project and would like to start growing your emailing list prior to launch this is a good way to go. We also did an article of coming soon pages, so if you need help check out: 40 Creative Coming Soon Pages & WordPress Themes. 7. Stripegenerator Tired of pixel-by-pixel painting, trying to create seamless stripes textures? Enjoy using stripe generator. Make your personal style, experiment and download the file. You can use it directly in your css file or as pattern in Photoshop. A great and useful resource for designers of all kinds. 8. PHPForms PHPForms is a professional web form builder. It allows to create personalised web forms in a few clicks and then embed them in your web-site. All you need to do is just copy and paste the generated code. With PHPForms you can save all form results in MySQL database on your server and download them as CSV file. Also PHPForms has pre-designed widgets for some types of fields (phone number, email, date, file upload etc.). You can create different forms: multi-page and small, simple and complex. To create a form you don’t need to have any special programming skills. 9. GenFavicon GenFavicon is a favicon creator that allows to create favicons for your site just in 3 steps: Select and upload source image. Select the part of the image that you want to appear in the favicon and specify desired dimensions. Preview favicon you generated. Save favicon to your local computer. Then all you need is upload saved favicon to the root directory of your site and add the provided code in the header area of your template page. 10. Color Scheme Designer If you need an interactive tool for designing harmonious color schemes that lets you drag a scale around a color wheel to select your hues, adjust the scheme and then export the hex codes into HTML, XML or text – then Color Scheme Designer is just for you. Need more color tools? Look no further, check out this article: Top 21 Helpful Color Tools for Designers Top 10 Online Applications for Web Designers | inspirationfeed.com
  20. Ioane, s-a dus!
  21. Fi8sVrs

    Dark Energy

    Guest narrator Sean Carroll of Caltech describes dark energy and the acceleration of the universe, the discovery of which was awarded the 2011 Nobel Prize in Physics on October 4th.
  22. probabil au descoperit un bug, sau incarca de pe conturi orange prinse in stealer
×
×
  • Create New...