index.html 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Seader - Your Ultimate App</title>
  7. <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
  8. <style>
  9. body {
  10. font-family: 'Roboto', sans-serif;
  11. margin: 0;
  12. padding: 0;
  13. background-color: #f4f4f4;
  14. color: #333;
  15. }
  16. .header {
  17. background-color: #1a1a1a; /* Updated color */
  18. color: white;
  19. text-align: center;
  20. padding: 100px 20px;
  21. background-image: url('./banner.png');
  22. background-size: cover;
  23. background-position: center;
  24. }
  25. .header h1 {
  26. font-size: 3em;
  27. margin-bottom: 0.5em;
  28. }
  29. .header p {
  30. font-size: 1.5em;
  31. margin-bottom: 1em;
  32. }
  33. .features, .hardware, .cta {
  34. padding: 50px 20px;
  35. background-color: #2a2a2a; /* Updated color */
  36. color: white; /* Updated text color */
  37. margin: 20px;
  38. border-radius: 10px;
  39. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  40. }
  41. .features h2, .hardware h2, .cta h2 {
  42. margin-bottom: 20px;
  43. font-size: 2em;
  44. color: #ffcc00; /* Updated color */
  45. text-align: center;
  46. }
  47. .features p, .hardware p, .cta p {
  48. margin-bottom: 10px;
  49. font-size: 1.1em;
  50. }
  51. .cta button {
  52. background-color: #ffcc00; /* Updated color */
  53. color: #1a1a1a; /* Updated text color */
  54. border: none;
  55. padding: 15px 30px;
  56. font-size: 16px;
  57. cursor: pointer;
  58. border-radius: 5px;
  59. transition: background-color 0.3s;
  60. }
  61. .cta button:hover {
  62. background-color: #e6b800; /* Updated color */
  63. }
  64. .hardware table {
  65. margin: 0 auto;
  66. width: 80%;
  67. border-collapse: collapse;
  68. }
  69. .hardware table, .hardware th, .hardware td {
  70. border: 1px solid #ddd;
  71. }
  72. .hardware th, .hardware td {
  73. padding: 8px;
  74. text-align: left;
  75. }
  76. .hardware a {
  77. color: #ffcc00; /* Updated color */
  78. text-decoration: none;
  79. }
  80. .hardware a:hover {
  81. text-decoration: underline;
  82. }
  83. .screenshots {
  84. display: flex;
  85. gap: 20px;
  86. margin: 20px 0;
  87. overflow-x: auto;
  88. padding: 10px;
  89. }
  90. .screenshots img {
  91. width: 512px;
  92. height: 256px;
  93. border: 2px solid #ffcc00;
  94. border-radius: 10px;
  95. flex-shrink: 0;
  96. }
  97. ul {
  98. list-style-type: none; /* Remove bullet points */
  99. padding: 0;
  100. }
  101. .hardware-details {
  102. text-align: left;
  103. }
  104. .comparison-table {
  105. width: 100%;
  106. border-collapse: collapse;
  107. }
  108. .comparison-table th, .comparison-table td {
  109. border: 1px solid #ddd;
  110. padding: 8px;
  111. text-align: center;
  112. }
  113. .comparison-table th {
  114. background-color: #1a1a1a;
  115. color: white;
  116. }
  117. .comparison-table td {
  118. background-color: #2a2a2a;
  119. color: white;
  120. }
  121. </style>
  122. </head>
  123. <body>
  124. <div class="header">
  125. <h1>Seader</h1>
  126. <p>Your Ultimate Credential Reading App</p> <!-- Updated tagline -->
  127. </div>
  128. <div class="features">
  129. <h2>Key Features</h2>
  130. <ul>
  131. <li>Allows for reading credential from HID: iClass, iClass SE, MFC SE, Desfire EV1/EV2, and Seos.</li>
  132. <li>Downgrade credentials to iClass SR, iClass legacy, and Prox.</li>
  133. <li>Works with Picopass Flipper app.</li>
  134. </ul>
  135. </div>
  136. <div class="screenshots">
  137. <img src="./menu.png" alt="Menu Screenshot">
  138. <img src="./pacs.png" alt="PACS Screenshot">
  139. <img src="./save_menu.png" alt="Save Menu Screenshot">
  140. </div>
  141. <div class="features">
  142. <h2>Feature Comparison</h2>
  143. <table class="comparison-table">
  144. <thead>
  145. <tr>
  146. <th>Feature</th>
  147. <th>Seader</th>
  148. <th>iCopyXS + ICS Decoder</th>
  149. <th>Weaponized Reader</th>
  150. <th>Proxmark3 RDV 4.01</th>
  151. </tr>
  152. </thead>
  153. <tbody>
  154. <tr>
  155. <td>Reading Credentials</td>
  156. <td>Yes</td>
  157. <td>Yes</td>
  158. <td>Yes</td>
  159. <td>Yes</td>
  160. </tr>
  161. <tr>
  162. <td>Downgrading Credentials</td>
  163. <td>Yes</td>
  164. <td>Limited</td>
  165. <td>No</td>
  166. <td>Yes</td>
  167. </tr>
  168. <tr>
  169. <td>Works with Flipper</td>
  170. <td>Yes</td>
  171. <td>No</td>
  172. <td>No</td>
  173. <td>No</td>
  174. </tr>
  175. <tr>
  176. <td>Supports Multiple Credential Types</td>
  177. <td>Yes</td>
  178. <td>Yes</td>
  179. <td>Yes</td>
  180. <td>Yes</td>
  181. </tr>
  182. <tr>
  183. <td>Open Source</td>
  184. <td>Yes</td>
  185. <td>Yes</td>
  186. <td>Conditional</td>
  187. <td>Yes</td>
  188. </tr>
  189. <tr>
  190. <td>Community Support</td>
  191. <td>Yes</td>
  192. <td>No</td>
  193. <td>No</td>
  194. <td>Yes</td>
  195. </tr>
  196. </tbody>
  197. </table>
  198. </div>
  199. <div class="hardware">
  200. <h2>Hardware Options</h2>
  201. <div class="hardware-details">
  202. <h3>Option 1: NARD flipper add-on</h3>
  203. <p>Buy it assembled at <a href="https://www.redteamtools.com/nard-sam-expansion-board-for-flipper-zero-with-hid-seos-iclass-sam/">Red Team Tools</a>, with or without SAM.</p>
  204. <p>Or build it yourself from the files in the <a href="https://github.com/killergeek/nard">NARD repo</a>.</p>
  205. <p>Optionally 3d print a <a href="https://www.printables.com/model/576735-flipper-zero-samnard-protecting-cover">case designed by Antiklesys</a>.</p>
  206. <h3>Option 2: Flippermeister</h3>
  207. <p>Buy it at <a href="https://www.redteamtools.com/flippermeister/">Red Team Tools</a>.</p>
  208. <h3>Option 3: Smart Card 2 Click</h3>
  209. <p>Buy HID SAM:</p>
  210. <ul>
  211. <li><a href="https://www.cdw.com/product/hp-sim-for-hid-iclass-for-hip2-reader-security-sim/4854794">USA</a></li>
  212. <li><a href="https://www.rfideas-shop.com/en/kt-sim-se-sim-card-hid-iclass-and-seos-for-sphip-r.html">Europe</a></li>
  213. <li><a href="https://www.pc-canada.com/item/hp-sim-for-hid-iclass-se-and-hid-iclass-seos-for-hip2-reader/y7c07a">Canada</a></li>
  214. <li><a href="https://www.ebay.com/p/4037642616">eBay</a></li>
  215. </ul>
  216. <p>Put SAM into <a href="https://a.co/d/1E9Zk1h">adapter</a> (because of chip on top) and plug into <a href="https://www.mikroe.com/smart-card-2-click">Smart Card 2 Click</a> (<a href="https://www.digikey.com/en/products/detail/mikroelektronika/MIKROE-5492/20840872">digikey</a> with cheaper US shipping). Connect Smart Card 2 Click to Flipper Zero (See `Connections` below).</p>
  217. <p>Optionally 3d print a <a href="https://www.printables.com/model/543149-case-for-flipper-zero-devboard-smart2click-samsim">case designed by sean</a>.</p>
  218. <h4>Connections</h4>
  219. <table>
  220. <tr>
  221. <th>Smart Card 2 Click</th>
  222. <th>Flipper</th>
  223. </tr>
  224. <tr>
  225. <td>5v</td>
  226. <td>1</td>
  227. </tr>
  228. <tr>
  229. <td>GND</td>
  230. <td>8 / 11 / 18</td>
  231. </tr>
  232. <tr>
  233. <td>TX</td>
  234. <td>16</td>
  235. </tr>
  236. <tr>
  237. <td>RX</td>
  238. <td>15</td>
  239. </tr>
  240. </table>
  241. </div>
  242. </div>
  243. <div class="cta">
  244. <h2>Get Started with Seader</h2>
  245. <p>Download the app now and experience its amazing features!</p>
  246. <a href="https://lab.flipper.net/apps/seader">
  247. <button>Download Now</button>
  248. </a>
  249. </div>
  250. </body>
  251. </html>