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
/** | |
* Remove defined words from string | |
* | |
* @param string $input the input string | |
* @return string the modified string | |
* | |
* Function taken from https://gist.github.com/keithmorris/4155220 / Rosenstein | |
**/ | |
function removeWords($input){ |
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
@echo off | |
color 0A | |
@SETLOCAL | |
:START | |
@REM ###CONFIG######## | |
@SET IP=192.168.0.1 | |
@SET USER=admin | |
@SET PASS=pass | |
if exist cookie.txt del cookie.txt | |
@REM ###CONFIG######## |