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
:: | |
:: This script installs SeleniumBasic without administrator privileges. | |
:: It registers a COM API running on the .NET Framework. | |
:: | |
:: The required files can be extracted with innoextract from the original setup : | |
:: Selenium.dll Selenium32.tlb Selenium64.tlb Selenium.pdb | |
:: | |
:: The drivers are not provided. You'll have to download and place the desired driver : | |
:: * in a folder defined in the "PATH" environment variable | |
:: * or in this folder before running this script |
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
# To get list of available features, run from PowerShell: Get-WindowsFeature | |
# To install IIS: | |
Install-WindowsFeature -name Web-Server -IncludeManagementTools | |
Install-WindowsFeature -name Web-Dyn-Compression | |
# To enable classic ASP: | |
Install-WindowsFeature -name Web-ASP |
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
<!-- | |
ASP Webshell | |
Working on latest IIS | |
Referance :- | |
https://github.com/tennc/webshell/blob/master/fuzzdb-webshell/asp/cmd.asp | |
http://stackoverflow.com/questions/11501044/i-need-execute-a-command-line-in-a-visual-basic-script | |
http://www.w3schools.com/asp/ |
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
' Author: Rob W <[email protected]> | |
' License: Creative Commons 3.0 with attribution | |
' http://creativecommons.org/licenses/by/3.0/ | |
' | |
' My own use case: | |
' For browser-testing purposes, I've set up a Win XP Virtual Machine | |
' (http://stackoverflow.com/q/10541225). My Chrome installers are | |
' located in a virtual share, at \\VBOXSRV\WinShared\WinXPDev\Chrome\ | |
' When I need to test an old Chrome version, I launch this script, which | |
' automatically installs and configures Chrome. |
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
<% | |
FUNCTION LoadThePage(strPageText, strInputURL) | |
Set objXMLHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP") | |
objXMLHTTP.Open "GET", strInputURL, False | |
objXMLHTTP.Send | |
strPageText = objXMLHTTP.responseText | |
Set objXMLHTTP = Nothing | |
End FUNCTION | |
FUNCTION GrabTheContent(strStart, strEnd) |