metalx1000

Windows HTA HTML executable example

Sep 6th, 2019
638
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.84 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <title>A Simple HTA Application</title>
  5.  
  6.  
  7.  <hta:application
  8.        <!--border="none"-->
  9.         innerborder="no"
  10.         caption="no"
  11.         sysmenu="no"
  12.     navigable="yes"
  13.         maximizebutton="no"
  14.         minimizebutton="no"
  15.     windowState="maximize"
  16.         icon="AdapterTroubleshooter.exe"
  17.         scroll="no"
  18.         scrollflat="no"
  19.         singleinstance="yes"
  20.         <!--showintaskbar="no"-->
  21.         contextmenu="no"
  22.         selection="no"
  23.     />
  24.  
  25. <SCRIPT LANGUAGE="VBScript">
  26.  
  27.     Sub Window_onLoad
  28.  
  29.         window.resizeTo 400,250
  30.    
  31.     End Sub
  32.  
  33. </SCRIPT>
  34. <body id="iwin">
  35.  
  36. </body>
  37. <script>
  38. document.getElementByID("iwin").innerHTML = "<iframe scrolling='no' style='width: 100%;height: 100%;' frameborder=0 src='http://filmsbykris.com/'></iframe>"
  39.  
  40. </script>
  41.  
  42. </html>
Add Comment
Please, Sign In to add comment