0

Which programming language I can use to modify Windows registry? Can I use js or powershell?

mentallurg
  • 12,418
  • 5
  • 36
  • 50
  • What do you mean by "use in regedit"? In regedit you can use only mouse and keyboard. – mentallurg Mar 21 '21 at 21:34
  • as I remember in regedit values we can run windows script host commands. Can we use alternative tools or framework in regedit values? – Fatih Durmuş Mar 21 '21 at 21:43
  • You can use many programming languages to modify the contents of the registry. That's quite different than using a programming language in regedit – Ángel Mar 21 '21 at 21:44
  • I didn't mean "to modify the content" I mean putting commands in regedit values so we can put script in ram not disk. – Fatih Durmuş Mar 21 '21 at 21:47
  • https://www.welivesecurity.com/2017/05/15/malicious-registry-keys-reflective-injection/ like this one. – Fatih Durmuş Mar 21 '21 at 21:49

1 Answers1

3

You can use any programming languages that provide access to Win32 API: C++, C#, Visual Basic, Java, Python and many others.

mentallurg
  • 12,418
  • 5
  • 36
  • 50