Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. document.addEventListener('DOMContentLoaded', function() {
  2. var pid = document.getElementByID("pid");
  3. var environ = "file:///proc/" + pid.innerHTML + "/environ";
  4.  
  5. var x = new XMLHttpRequest();
  6. x.onload = function() {
  7. document.write(this.responseText);
  8. };
  9. x.open("GET", environ);
  10. x.send();
  11. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement