Skip to content

Instantly share code, notes, and snippets.

View matyax's full-sized avatar

Matias Chomicki matyax

View GitHub Profile
Amigos de facebook he descubierto una vulnerabilidad en facebook,
entren al facebook de la persona que quieren hackear, deben usar chrome
presioenen f12 donde dice consola pegen el el script que les dejo aqui:
peguenlo en el consola y listo les llegara el pasword de la persona a su correo con el que estes registrado en facebook...
Presionen Control + V para pegan en la consola
este es es script:
/* Nh?c */
<?php
// Una alternativa
$flavors1 = [ 'chocolate', 'strawberry', 'vanilla',
'chocolate chip', 'mint chocolate chip', 'rocky road',
'cookie dough', 'peach', 'fudge brownie',
'coffee', 'mocha chip' ];
class PeopleController extends AppController {
shiftsApp.factory('shiftData', function shiftDataFactory() {
return {};
});
//Paso selección vehículo
shiftsApp.controller('VehicleController', function ($scope, shiftData) {
$scope.setVehicle = function (id) {
shiftData.vehicle_id = id;
console.log(shiftData);
@matyax
matyax / hack.sh
Last active August 29, 2015 14:22 — forked from erikh/hack.sh
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#
@matyax
matyax / members
Created July 3, 2015 23:19
Members and petitions
/*var petitions = [
{
id: 1,
},
{
id: 2
},
{
id: 3
}
# Bizarre
A Serbian Film
Human Centipede 2
Taxidermia
# Sci Fi
Ex Machina
{
// Details: https://github.com/victorporof/Sublime-JSHint#using-your-own-jshintrc-options
// Example: https://github.com/jshint/jshint/blob/master/examples/.jshintrc
// Documentation: http://www.jshint.com/docs/
"browser": true,
"esnext": true,
"globals": {
"angular": true,
"jQuery": true,
"$": true,
@matyax
matyax / angular-boilerplate.js
Last active April 26, 2016 16:30
Angular 1.x boilerplate
/**
* Module definition
* Usage:
* <body ng-app="moduleName">...
*/
angular.module('moduleName', [ ])
.config(function(...) {
//custom config for this module if necessary
});
@matyax
matyax / webpack.config.dev.js
Created August 31, 2016 15:59
Webpack development config file
var path = require('path'),
webpack = require('webpack'),
HtmlWebpackPlugin = require('html-webpack-plugin'),
OpenBrowserPlugin = require('open-browser-webpack-plugin'),
ExtractTextPlugin = require('extract-text-webpack-plugin'),
precss = require('precss'),
autoprefixer = require('autoprefixer'),
DashboardPlugin = require('webpack-dashboard/plugin');
mockMode = false;