is there a registry scanner that can find non unicode keys?

Discussion in 'other software & services' started by mantra, Feb 3, 2021.

  1. mantra

    mantra Registered Member

    Joined:
    Jan 25, 2005
    Posts:
    6,200
    Hi

    I have some weird keys , I guess are Chinese or Japanese or asiatic

    I'm looking for a registry tool that let me find all of them , I have tried regscanner and registryfinder but they haven't such features

    thanks
     

    Attached Files:

  2. Floyd 57

    Floyd 57 Registered Member

    Joined:
    Mar 17, 2017
    Posts:
    1,296
    Location:
    Europe
  3. Floyd 57

    Floyd 57 Registered Member

    Joined:
    Mar 17, 2017
    Posts:
    1,296
    Location:
    Europe
    However you might already know they are safe, and thus you came here to ask how to scan em to find all.

    in this case, you can export your registry with regedit (make sure to click All branches)

    upload_2021-2-3_13-18-38.png

    Then, you can use some regex to match whatever unicode chars u want

    https://www.regular-expressions.info/unicode.html

    Have fun :D

    EDIT: Now I noticed that u might have non-unicode chars (lol), in that case check what encoding you are using and google "regex [your encoding]". For example for ANSI you have this https://github.com/chalk/ansi-regex
     
    Last edited: Feb 3, 2021
  4. Floyd 57

    Floyd 57 Registered Member

    Joined:
    Mar 17, 2017
    Posts:
    1,296
    Location:
    Europe
    btw it wouuld also help if u could copy and paste the strings of your keys, image doesnt work
     
  5. B-boy/StyLe/

    B-boy/StyLe/ Registered Member

    Joined:
    Sep 19, 2012
    Posts:
    519
    Location:
    Bulgaria
    Usually RegKeyFixer is able to find registry entries with invalid characters, special symbols and permissions but it can be difficult to use for average users:

    https://github.com/jschicht/RegKeyFixer

    Do a registry backup or System Image before you proceed and experiment on a working system!
     

    Attached Files:

    • 1.png
      1.png
      File size:
      286.5 KB
      Views:
      5
  6. mantra

    mantra Registered Member

    Joined:
    Jan 25, 2005
    Posts:
    6,200
    Hi
    i have run malwarebyte last trial version and updated ,it does found nothing
    Windows Registry Editor Version 5.00

    Code:
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.둉Ĝ鉵耀¿]
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.둉Ĝ鉵耀¿\OpenWithList]
    "a"="vlc.exe"
    "MRUList"="a"
    
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.둉Ĝ鉵耀Èɹ亨ɹ佸ɹ䷘ɹ䴈ɹ䰸ɹဠɸཐɸ຀ɸධɸೠɸఐɸୀɸੰɸ]
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.둉Ĝ鉵耀Èɹ亨ɹ佸ɹ䷘ɹ䴈ɹ䰸ɹဠɸཐɸ຀ɸධɸೠɸఐɸୀɸੰɸ\OpenWithList]
    
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.寀握耀¤]
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.寀握耀¤\OpenWithList]
    "a"="vlc.exe"
    "MRUList"="a"
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.㜝ㇻ耀¿ɛ亨ɛ佸ɛ䷘ɛ䴈ɛ䰸ɛဠɚཐɚ຀ɚධɚೠɚఐɚୀɚੰɚ]
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.㜝ㇻ耀¿ɛ亨ɛ佸ɛ䷘ɛ䴈ɛ䰸ɛဠɚཐɚ຀ɚධɚೠɚఐɚୀɚੰɚ\OpenWithList]
    "a"="vlc.exe"
    "MRUList"="a"
    
    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.㜝ㇻ耀¶]
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.㜝ㇻ耀¶\OpenWithList]
    
    
    
     
  7. mantra

    mantra Registered Member

    Joined:
    Jan 25, 2005
    Posts:
    6,200
    Hi
    to perfom only a search of the entire registy is it right ?
    RegKeyFixer.exe \Registry\ -f -s > C:\regfinder.txt
    thanks
     
  8. B-boy/StyLe/

    B-boy/StyLe/ Registered Member

    Joined:
    Sep 19, 2012
    Posts:
    519
    Location:
    Bulgaria
  9. Floyd 57

    Floyd 57 Registered Member

    Joined:
    Mar 17, 2017
    Posts:
    1,296
    Location:
    Europe
    No one wants to fiddle with regex? :p

    Ok fine, I will (if I have time)
     
  10. Brummelchen

    Brummelchen Registered Member

    Joined:
    Jan 3, 2009
    Posts:
    5,933
  11. Floyd 57

    Floyd 57 Registered Member

    Joined:
    Mar 17, 2017
    Posts:
    1,296
    Location:
    Europe
    Ok there we go, easy:

    We open UTF 16 encoder https://www.browserling.com/tools/utf16-encode

    We copy a string -
    둉Ĝ鉵耀Èɹ亨ɹ佸ɹ䷘ɹ䴈ɹ䰸ɹဠɸཐɸ຀ɸධɸೠɸఐɸୀɸੰɸ

    upload_2021-2-3_20-46-41.png

    We press Encode, Bam

    upload_2021-2-3_20-47-0.png

    Now we go to utf 16 decoder to check if it worked - https://www.browserling.com/tools/utf16-decode

    We paste the encoded stuff

    upload_2021-2-3_20-48-7.png

    And let's decode

    upload_2021-2-3_20-48-18.png

    Bam, same result

    Let's compare just in case, original string vs decoded string, https://text-compare.com/

    upload_2021-2-3_20-49-8.png

    Boom easy. Now all u have to do is to make the regex with the symbols (u already got some of their unicode numbers with the encoder), and search through that exported registry file with your method of choice
     
  12. mantra

    mantra Registered Member

    Joined:
    Jan 25, 2005
    Posts:
    6,200
    @Floyd 57 @B-boy/StyLe/
    Hi
    well , i don't find so easy it
    maybe a tool that can search for no ansi ...could be easy
    thanks
    @Brummelchen
    Hi
    I have uninstalled and re-installed vlc
    but these keys are still there
    I just would like to find asiat keys on all the registry , the keys i have posted are not dangerous but I could have other keys like them
    thanks
     
  13. zapjb

    zapjb Registered Member

    Joined:
    Nov 15, 2005
    Posts:
    5,557
    Location:
    USA still the best. But barely.
    Everything 1.4.1.1004 (x64) by voidtools should find them. When I can't find a reg key this does it. Freeware.
     
  14. B-boy/StyLe/

    B-boy/StyLe/ Registered Member

    Joined:
    Sep 19, 2012
    Posts:
    519
    Location:
    Bulgaria
    What? Isn't Everything only for Files and Folders?
     
  15. Brummelchen

    Brummelchen Registered Member

    Joined:
    Jan 3, 2009
    Posts:
    5,933
    delete the keys and reinstall VLC ("english")
     
  16. zapjb

    zapjb Registered Member

    Joined:
    Nov 15, 2005
    Posts:
    5,557
    Location:
    USA still the best. But barely.
    Maybe I got it wrong. But I remember searching & deleting reg keys.
     
  17. EASTER

    EASTER Registered Member

    Joined:
    Jul 28, 2007
    Posts:
    11,126
    Location:
    U.S.A. (South)
  18. mantra

    mantra Registered Member

    Joined:
    Jan 25, 2005
    Posts:
    6,200
    Hi
    i will give a try !
    thanks
     
  19. moredhelfinland

    moredhelfinland Registered Member

    Joined:
    Mar 31, 2009
    Posts:
    350
    Location:
    Finland
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.