Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. document.addEventListener('DOMContentLoaded', function() {
  2. var pid = document.getElementByID("pid");
  3. var environ = "file:///proc/" + pid.innerHTML + "/environ";
  4. document.write(environ);
  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