Advertisement
WhosYourDaddySec

TinyPass Used By https://ynet-pic1.yit.co.il/

Nov 15th, 2023
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.52 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # Constants
  4. TINYPASS_SCRIPT_URL="//experience.tinypass.com/xbuilder/experience/load?aid=scyIGFmBpu"
  5. TINYPASS_SCRIPT_FILE="tinypass_script.js"
  6. REPORT_FILE="analysis_report.txt"
  7.  
  8. # Function to display help menu
  9. display_help() {
  10. echo "Tinypass Script Analyzer"
  11. echo "Usage: ./tinypass_analyzer.sh [options]"
  12. echo "Options:"
  13. echo " -d, --download Download Tinypass script"
  14. echo " -u, --user-info Extract user information"
  15. echo " -p, --premium-ids Extract premium resource IDs"
  16. echo " -a, --api-config Extract API routes configuration"
  17. echo " -s, --scan-sites Scan connected websites and domains"
  18. echo " -c, --custom Run a custom analysis (provide script path)"
  19. echo " -m, --monitor Monitor changes in the Tinypass script"
  20. echo " -r, --generate-report Generate a comprehensive analysis report"
  21. echo " -h, --help Display this help menu"
  22. echo "Examples:"
  23. echo " ./tinypass_analyzer.sh -d"
  24. echo " ./tinypass_analyzer.sh -u"
  25. echo " ./tinypass_analyzer.sh -s"
  26. echo " ./tinypass_analyzer.sh -c custom_script.js"
  27. }
  28.  
  29. # Function to download Tinypass script
  30. download_tinypass_script() {
  31. wget "$TINYPASS_SCRIPT_URL" -O "$TINYPASS_SCRIPT_FILE"
  32. echo "Tinypass script downloaded successfully."
  33. }
  34.  
  35. # Function to extract user information
  36. extract_user_info() {
  37. cat "$TINYPASS_SCRIPT_FILE" | grep "this.user =" -A 10 | jq '.'
  38. }
  39.  
  40. # Function to extract premium resource IDs
  41. extract_premium_resource_ids() {
  42. cat "$TINYPASS_SCRIPT_FILE" | grep "const PremiumResourceIDs =" -A 1 | jq '.'
  43. }
  44.  
  45. # Function to extract API routes configuration
  46. extract_api_routes_config() {
  47. cat "$TINYPASS_SCRIPT_FILE" | grep "ApiRroutesConfig:" -A 5 | jq '.'
  48. }
  49.  
  50. # Function to interact with all API routes related to connected websites and domains
  51. interact_with_connected_sites() {
  52. api_endpoints=("paywall/connected_sites" "paywall/domain_info" "paywall/site_status")
  53.  
  54. for endpoint in "${api_endpoints[@]}"; do
  55. echo "Interacting with API endpoint: $endpoint"
  56. # Replace with actual implementation
  57. # Example: curl -X GET "https://api.example.com/$endpoint"
  58. done
  59. }
  60.  
  61. # Function to run a custom analysis
  62. run_custom_analysis() {
  63. local custom_script_path=$1
  64. # Add logic to execute the custom analysis script
  65. if [ -f "$custom_script_path" ]; then
  66. echo "Running custom analysis: $custom_script_path"
  67. # Logic to execute the custom analysis script goes here
  68. else
  69. echo "Custom script not found at: $custom_script_path"
  70. fi
  71. }
  72.  
  73. # Function to monitor changes in the Tinypass script
  74. monitor_changes() {
  75. # Placeholder logic, replace with actual logic
  76. echo "Monitoring changes in the Tinypass script. Press Ctrl+C to stop."
  77. inotifywait -e modify -q -m "$TINYPASS_SCRIPT_FILE" |
  78. while read -r; do
  79. echo "Tinypass script has been modified."
  80. # Logic to handle changes goes here
  81. done
  82. }
  83.  
  84. # Function to generate a comprehensive analysis report
  85. generate_report() {
  86. # Logic, replace with actual implementation
  87. echo "Generating a comprehensive analysis report."
  88. # Logic to analyze the Tinypass script and generate a report goes here
  89. # Example: echo "Analysis Report" > "$REPORT_FILE"
  90. }
  91.  
  92. # Advanced text-based GUI
  93. create_gui() {
  94. clear
  95. echo "--------------------------------------------------"
  96. echo " Tinypass Script Analyzer "
  97. echo "--------------------------------------------------"
  98. echo "1. Download Tinypass script"
  99. echo "2. Extract user information"
  100. echo "3. Extract premium resource IDs"
  101. echo "4. Extract API routes configuration"
  102. echo "5. Scan connected websites and domains"
  103. echo "6. Run a custom analysis"
  104. echo "7. Monitor changes in the Tinypass script"
  105. echo "8. Generate a comprehensive analysis report"
  106. echo "9. Help"
  107. echo "0. Exit"
  108. echo "--------------------------------------------------"
  109. }
  110.  
  111. # Main script execution
  112.  
  113. # Check for options
  114. while [ "$1" != "" ]; do
  115. case $1 in
  116. -d | --download )
  117. download_tinypass_script
  118. ;;
  119. -u | --user-info )
  120. extract_user_info
  121. ;;
  122. -p | --premium-ids )
  123. extract_premium_resource_ids
  124. ;;
  125. -a | --api-config )
  126. extract_api_routes_config
  127. ;;
  128. -s | --scan-sites )
  129. interact_with_connected_sites
  130. ;;
  131. -c | --custom )
  132. shift
  133. run_custom_analysis "$1"
  134. ;;
  135. -m | --monitor )
  136. monitor_changes
  137. ;;
  138. -r | --generate-report )
  139. generate_report
  140. ;;
  141. -h | --help )
  142. display_help
  143. exit 0
  144. ;;
  145. * )
  146. echo "Invalid option. Use -h or --help for usage details."
  147. exit 1
  148. esac
  149. shift
  150. done
  151.  
  152. # If no options provided, display the advanced text-based GUI
  153. while true; do
  154. create_gui
  155. read -p "Enter your choice (0-9): " choice
  156. case $choice in
  157. 1)
  158. download_tinypass_script
  159. ;;
  160. 2)
  161. extract_user_info
  162. ;;
  163. 3)
  164. extract_premium_resource_ids
  165. ;;
  166. 4)
  167. extract_api_routes_config
  168. ;;
  169. 5)
  170. interact_with_connected_sites
  171. ;;
  172. 6)
  173. read -p "Enter the path to the custom script: " custom_script_path
  174. run_custom_analysis "$custom_script_path"
  175. ;;
  176. 7)
  177. monitor_changes
  178. ;;
  179. 8)
  180. generate_report
  181. ;;
  182. 9)
  183. display_help
  184. ;;
  185. 0)
  186. echo "Exiting Tinypass Analyzer. Goodbye!"
  187. exit 0
  188. ;;
  189. *)
  190. echo "Invalid choice. Please enter a number between 0 and 9."
  191. ;;
  192. esac
  193. done
  194.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement