-1

How do i get the directory structure and filenames under a PHP website I do not own?. Not the code, just the structure and the filenames.? I tried httrack, but since it's a PHP website, it doesn't work.

  • If you stop and think about this for a few seconds you will understand why you can't do this – John Conde Jun 04 '20 at 01:26
  • What makes you think you SHOULD be able to do this. – Barmar Jun 04 '20 at 01:29
  • I don't even need to find the filenames, just the directory structure. I purchased an app from codecanyon, the guy who sold me, or anyone for that matter, doesn't tell how to organize the backend and its structure. We are just fed up of it. So I thought if I could find the directory structure, i could help the others. –  Jun 04 '20 at 13:09

1 Answers1

1

You won't be able to extract the complete structure of a PHP website without having access to the server. You can maybe find out from where it pulls images and scripts by looking at src attributes of script and img tags as well as analysing the href attribute of a tags.
If you do find links containing strings like wp-includes or wp-content you can guess that it is a WordPress site for example which pretty much has a fixed structure.

Patrick Klein
  • 1,161
  • 3
  • 10
  • 23