🔔 NOTE: If you can, please buy software license to support the authors/developers!
- Go to menu Help > Enter License.
- Copy the license key below and paste it into the textbox > Click the Use License button.
| //============================================================================ | |
| // Name : OctaneCrawler.cpp | |
| // Author : Berlin Brown (berlin dot brown at gmail.com) | |
| // Version : | |
| // Copyright : Copyright Berlin Brown 2012-2013 | |
| // License : BSD | |
| // Description : This is the simplest possible web crawler in C++ | |
| // Uses boost_regex and boost_algorithm | |
| //============================================================================ |
| *** | |
| FARLiGHT ELiTE HACKERS LEGACY R3L3ASE | |
| *** | |
| Attached is the MySQL Windows Remote Exploit (post-auth, udf | |
| technique) including the previously released mass scanner. | |
| The exploit is mirrored at the farlight website http://www.farlight.org. | |
| Oracle MySQL on Windows Remote SYSTEM Level Exploit zeroday | |
| All owned By Kingcope |
| import os | |
| import urllib2, base64 | |
| import sys | |
| import urllib | |
| class TomcatManager(object): | |
| def __init__(self, endpoint, username, password): | |
| self.endpoint = endpoint |
| smtp mail sending in cPython blocks the GIL. | |
| This code is tested on python 2.7.8 and I'm using it with web2py | |
| If you use Google Apps for your domain email and if you have admin access, you can easily use the gmail api. | |
| Because you have admin access, you can create a "service account" in the Google Developer Console. | |
| This makes authentication easy. | |
| There are other authorisation methods when you don't have admin access, but they require interaction from the user via a browser. | |
| To use this, you need to install these modules (From PyPI): | |
| pyOpenSSL |
🔔 NOTE: If you can, please buy software license to support the authors/developers!
| --- ./qt-everywhere-opensource-src-4.8.6/src/gui/kernel/qcocoaapplicationdelegate_mac.mm 2014-06-12 10:20:38.000000000 +0300 | |
| +++ ./qt-everywhere-opensource-src-4.8.6/src/gui/kernel/qcocoaapplicationdelegate_mac.mm 2014-06-12 21:59:18.000000000 +0300 | |
| @@ -122,7 +122,7 @@ | |
| [dockMenu release]; | |
| [qtMenuLoader release]; | |
| if (reflectionDelegate) { | |
| - [NSApp setDelegate:reflectionDelegate]; | |
| + [[NSApplication sharedApplication] setDelegate:reflectionDelegate]; | |
| [reflectionDelegate release]; | |
| } |
| #!/usr/bin/env ruby | |
| require 'ronin/network/tcp' | |
| require 'ronin/ui/output/helpers' | |
| require 'combinatorics' | |
| include Ronin::Network::TCP, | |
| Ronin::UI::Output::Helpers | |
| hosts = %w[ |
| from flask import Flask | |
| from flask.ext.sqlalchemy import SQLAlchemy | |
| from flask.ext import admin, wtf | |
| from flask.ext.admin.contrib import sqlamodel | |
| app = Flask(__name__) | |
| app.config['SECRET_KEY'] = '123456790' | |
| app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///test.sqlite' | |
| db = SQLAlchemy(app) |
| -Implementar busca com sugestão (estilo Google) | |
| -Fazer um seed com termos para teste | |
| -Fazer debounce de 300ms em cada caractere digitado | |
| -Se o usuário digitar "bazinga", a logo do Zoozle deve sumir, a imagem do Sheldon deve ser exibida e uma exceção "Bazinga" deve ser disparada | |
| -Busca case insensitive | |
| -Ao clicar-se numa opção da lista de sugestões, ou ao apertar-se Enter, fazer a busca no Google de verdade | |
| current_path = File.dirname(__FILE__) | |
| sass_path = File.join(current_path, 'scss') | |
| css_path = File.join(current_path, 'css') | |
| #:expanded, :nested, :compact, :compressed | |
| output_style = :expanded |