Last active
          February 16, 2024 13:32 
        
      - 
      
 - 
        
Save midlan/5b9e786266bdca68b45ae88da92c7669 to your computer and use it in GitHub Desktop.  
Revisions
- 
        
midlan revised this gist
May 15, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ javascript: (function() { var url = prompt('URL of script to inject:', 'https://code.jquery.com/jquery-3.4.1.min.js'); if (url) {  - 
        
midlan renamed this gist
Mar 11, 2019 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. - 
        
midlan created this gist
Feb 7, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ javascript: (function() { var url = prompt('URL of script to inject:'); if (url) { console.log('Script inject request URL:', url); var script = document.createElement('script'); script.src = url; document.getElementsByTagName('head')[0].appendChild(script); console.log('Injected script: ', script); } })();