Advertisement
MeKLiN2

Untitled

Mar 4th, 2022
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.23 KB | None | 0 0
  1. https://www.liquisearch.com/security_identifier/machine_sids/decoding_machine_sid
  2. https://renenyffenegger.ch/notes/Windows/security/SID/index
  3. https://www.rapidtables.com/convert/number/decimal-to-hex.html
  4. https://www.convertbinary.com/alphabet/
  5.  
  6. S-1-5-80-956008885-3418522649-1831038044-1853292631-2271478464
  7.  
  8. TrustedInstaller
  9.  
  10. -
  11.  
  12. S-1-5-80- 956008885 3418522649 1831038044 1853292631 2271478464 decimal
  13. -------------------------------------------------------------------------------------
  14. 38FB89B5 CBC28419 6D236C5C 6E770057 876402C0 hexidecimal (binary)
  15. -------------------------------------------------------------------------------------
  16. reverse: B589FB38 1984C2CB 5C6C236D 5700776E C0026487
  17.  
  18. 1-5-50
  19.  
  20. _____________
  21. | Prefixes: | S-1-5-19 (localservice)
  22. |-----------| S-1-5-20 (networkservice)
  23. S-1-5-18 (systemprofile)
  24. The S stays in english and not part of the binary
  25. (trustedinstaller, S-1-5-80(-956008885-3418522649-1831038044-1853292631-2271478464)
  26. 1 5 05 80 -
  27. binary:
  28. 01 05 00 00 00 00 00 50 00 -
  29. ----------------------- 1000
  30. (userprofiles, S-1-5-21(-#########-##########-##########-####
  31. 1 5 5 21 - 1000_Classes
  32. 01 05 00 00 00 00 00 05 15 - 1001
  33. 1001_Classes
  34. machine SID prefix: 500
  35. binary | hexi | deci 500_Classes
  36. -------------------------------
  37. 12 | 12 | 18
  38. 15 | 15 | 21
  39. 12 | 12 | 18
  40. 13 | 13 | 19
  41. 14 | 14 | 20
  42. 50 | 50 | 80
  43. 05 | 05 | 5
  44. 01 | 01 | 1
  45. -------------------------------
  46. ascii to binary
  47. ---------------
  48. S | 01 01 00 11 (not used)
  49. s | 01 11 00 11
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66. RapidTables
  67.  
  68. Home›Conversion›Number conversion›Decimal to hexadecimal
  69. Decimal to Hexadecimal converter
  70. From
  71. Decimal
  72. To
  73. Hexadecimal
  74. Enter decimal number
  75. 956008885
  76. 10
  77.  
  78. Hex number
  79. 38FB89B5
  80. 16
  81. Hex signed 2's complement
  82. 38FB89B5
  83. 16
  84. Binary number
  85. 111000111110111000100110110101
  86. 2
  87. Digit grouping
  88. Decimal to hex calculation steps
  89.  
  90. Divide by the base 16 to get the digits from the remainders:
  91.  
  92. Division
  93. by 16 Quotient
  94. Remainder
  95.  
  96. (Digit) Digit #
  97. (956008885)/16 59750555 5 0
  98. (59750555)/16 3734409 11 1
  99. (3734409)/16 233400 9 2
  100. (233400)/16 14587 8 3
  101. (14587)/16 911 11 4
  102. (911)/16 56 15 5
  103. (56)/16 3 8 6
  104. (3)/16 0 3 7
  105. = (38FB89B5)16
  106.  
  107. Hex to decimal converter ►
  108.  
  109. How to convert from decimal to hex
  110. Conversion steps:
  111. Divide the number by 16.
  112. Get the integer quotient for the next iteration.
  113. Get the remainder for the hex digit.
  114. Repeat the steps until the quotient is equal to 0.
  115. Example #1
  116. Convert 756210 to hex:
  117.  
  118. Division
  119. by 16 Quotient
  120. (integer) Remainder
  121. (decimal) Remainder
  122. (hex) Digit #
  123. 7562/16 472 10 A 0
  124. 472/16 29 8 8 1
  125. 29/16 1 13 D 2
  126. 1/16 0 1 1 3
  127. So 756210 = 1D8A16
  128.  
  129. Example #2
  130. Convert 3563110 to hex:
  131.  
  132. Division
  133. by 16 Quotient Remainder
  134. (decimal) Remainder
  135. (hex) Digit #
  136. 35631/16 2226 15 F 0
  137. 2226/16 139 2 2 1
  138. 139/16 8 11 B 2
  139. 8/16 0 8 8 3
  140. So 3563110 = 8B2F16
  141.  
  142. Decimal to hex conversion table
  143. Decimal
  144. base 10
  145.  
  146. Hex
  147. base 16
  148.  
  149. 0 0
  150. 1 1
  151. 2 2
  152. 3 3
  153. 4 4
  154. 5 5
  155. 6 6
  156. 7 7
  157. 8 8
  158. 9 9
  159. 10 A
  160. 11 B
  161. 12 C
  162. 13 D
  163. 14 E
  164. 15 F
  165. 16 10
  166. 17 11
  167. 18 12
  168. 19 13
  169. 20 14
  170. 21 15
  171. 22 16
  172. 23 17
  173. 24 18
  174. 25 19
  175. 26 1A
  176. 27 1B
  177. 28 1C
  178. 29 1D
  179. 30 1E
  180. 40 28
  181. 50 32
  182. 60 3C
  183. 70 46
  184. 80 50
  185. 90 5A
  186. 100 64
  187. 200 C8
  188. 1000 3E8
  189. 2000 7D0
  190.  
  191. Hex to decimal converter ►
  192.  
  193.  
  194.  
  195. See also
  196. Hex to decimal converter
  197. Decimal to binary converter
  198. Decimal to octal converter
  199. Decimal to fraction converter
  200. Decimal to percent converter
  201. How to convert decimal to hex
  202. ASCII text to hex converter
  203. RGB to Hex color converter
  204. Numeral systems
  205. Number conversion
  206. 16 decimal to hex
  207. 64 decimal to hex
  208. 255 decimal to hex
  209. Write how to improve this page
  210. Your message ...
  211.  
  212. NUMBER CONVERSION
  213. ASCII,Hex,Binary,Decimal converter
  214. ASCII text to binary converter
  215. ASCII text to hex converter
  216. Base converter
  217. Binary converter
  218. Binary to ASCII text converter
  219. Binary to decimal converter
  220. Binary to hex converter
  221. Date to roman numerals converter
  222. Decimal to fraction converter
  223. Decimal to percent converter
  224. Decimal to binary converter
  225. Decimal to octal converter
  226. Decimal to hex converter
  227. Degrees to deg,min,sec converter
  228. Deg,min,sec to degrees converter
  229. Degrees to radians converter
  230. Fraction to decimal converter
  231. Fraction to percent converter
  232. Hex/decimal/octal/binary converter
  233. Hex to ASCII text converter
  234. Hex to binary converter
  235. Hex to decimal converter
  236. Octal to decimal converter
  237. Percent to decimal converter
  238. Percent to fraction converter
  239. Percent to ppm converter
  240. ppm to percent converter
  241. ppm to ppb converter
  242. ppm to ppt converter
  243. ppb to ppm converter
  244. ppt to ppm converter
  245. ppm converter
  246. Radians to degrees converter
  247. Roman numerals converter
  248. Scientific notation converter
  249. RAPID TABLES
  250. Recommend Site
  251. Send Feedback
  252. About
  253. Home | Web | Math | Electricity | Calculators | Converters | Tools
  254. © RapidTables.com | About | Terms of Use | Privacy Policy | Manage Cookies
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement