This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ##!/bin/bash | |
| #starting sublist3r | |
| sublist3r -d $1 -v -o domains.txt | |
| #running assetfinder | |
| /bin/assetfinder --subs-only $1 | tee -a domains.txt | |
| #removing duplicate entries | |
| sort -u domains.txt -o domains.txt | |
| #checking for alive domains | |
| echo "\n\n[+] Checking for alive domains..\n" | |
| cat domains.txt | /bin/httprobe | tee -a alive.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| acunetix site:appnee.com OR site:cracksnow.com OR site:audioz.download OR site:computerworm.net OR site:crackzsoft.com OR site:forums.mydigitallife.net OR site:free.appnee.com OR site:karanpc.com OR site:sadeempc.com OR site:softhund.com OR site:soft4win.com; OR site:indowsapps.org OR site:yourenamecracks.blogspot.com OR site:onhax.me OR site:soupget.com OR site:softasm.com OR site:diakov.net OR site:freecoursesite.com OR site:courseclub.net OR site:cgpersia.com OR site:downloadly.ir OR site:warezturkey.org OR site:filecr.com OR site:soft98.ir OR site:downloadha.com OR site:p30download.com OR site:download.ir OR site:patoghu.com OR site:yasdl.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private async Task<string> getInstagramPostId() | |
| { | |
| await Task.Run(() => { | |
| WebClient webClient = new WebClient(); | |
| string str = "http://api.instagram.com/oembed?url="; | |
| string text = webClient.DownloadString(str + txt.Text); | |
| int num = text.IndexOf(string.Concat(new object[] | |
| { | |
| '"',"media_id",'"',": ",'"'})); | |
| int num2 = text.IndexOf(string.Concat(new object[] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DROP TABLE IF EXISTS wp_users; | |
| CREATE TABLE wp_users ( | |
| ID bigint(20) unsigned NOT NULL auto_increment, | |
| user_login varchar(60) NOT NULL default '', | |
| user_pass varchar(64) NOT NULL default '', | |
| user_nicename varchar(50) NOT NULL default '', | |
| user_email varchar(100) NOT NULL default '', | |
| user_url varchar(100) NOT NULL default '', | |
| user_registered datetime NOT NULL default '0000-00-00 00:00:00', | |
| user_activation_key varchar(60) NOT NULL default '', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function array_make_first(&$array, $element) { | |
| if (($ndx = array_search($element, $array)) !== false) { | |
| unset($array[$ndx]); | |
| array_unshift($array, $element); | |
| } | |
| } | |
| $encler = mb_list_encodings(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| This is a simple proof of concept of a brute force algorithm for string matching with | |
| given set of characters. | |
| The way this works is that the algorithm counts from first to last possible combination of | |
| given characters. Instead of counting(incrementing) in number base 10 we use | |
| a new base which is derived from your set of possible characters (we count in symbols). | |
| So if your characters list contains 27 characters the program actually counts in a 27 base | |
| number system. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Execute script from image</title> | |
| <meta name="author" content="popc0rn - Luka Vidakovic"> | |
| </head> | |
| <body> | |
| <div id="x"></div> |
NewerOlder