A PHP Error was encountered

Severity: 8192

Message: Function create_function() is deprecated

Filename: geshi/geshi.php

Line Number: 4698

Backtrace:

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4698
Function: _error_handler

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4621
Function: _optimize_regexp_list_tokens_to_string

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 1655
Function: optimize_regexp_list

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2029
Function: optimize_keyword_group

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2168
Function: build_parse_cache

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/Process.php
Line: 45
Function: parse_code

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/models/Pastes.php
Line: 517
Function: syntax

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/controllers/Main.php
Line: 693
Function: getPaste

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/index.php
Line: 315
Function: require_once

Hexify - Stikked
From Hex, 10 Years ago, written in PowerShell.
Embed
  1. #Change these three to match up to the extracted registry data
  2. $YourInput = "db,1f,ac,3f,75,a4,a3,43,ae,07,b5,20,bf,37,b0,69,b8,6b,\
  3.  0d,20,cf,93,1b,42,b9,57,3d,a8,4e,ae,57,1a,bf,4a,c5,5e,dc,5a,59,48,84,1f,b5,\
  4.  34,28,86,84,d2,d4,c4,8b,5b,c8,d2,aa,41,a8,3b,c8,d3,bd,fa,0b,6c,eb,76,b4,1d,\
  5.  69,50,45,48,9b,84,8f,7a,ae,9d,cf,8a,53,2c,ee,7f,27,b0,b9,45,82,27,46,41,67,\
  6.  b0,55,8d,ce,a5,05,02,b9,ba,73,41,b2,91,9d,72,6f,65,c3,00,d9,ae,79,25,c1,45,\
  7.  47,4e,91,d7,ad,51,5b,05,12,16"
  8.  
  9. $Input = $YourInput -replace '\s+',''
  10. $hexified = $Input.Split(',').Trim('\') | % { "0x$_"}
  11. $hexified -replace "`n|`r"
  12. $hexified = $hexified -join ','
  13. Write-Host "([byte[]]($hexified))"
  14. Write-Output "([byte[]]($hexified))" | Out-File ".\hexified.txt" -Append