Find-me: Revision history

From Pessin randon wiki

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

26 September 2022

  • curprev 11:4511:45, 26 September 2022 Exf talk contribs 672 bytes +36 No edit summary Tag: Visual edit
  • curprev 11:4411:44, 26 September 2022 Exf talk contribs 636 bytes +636 Created page with "===Description=== Sometimes you only know the filename but not the location. 50pts ===Question=== Find a file from the system that is named <code>find-flag.txt</code> It is located in one of the subfolders of <code>/etc/</code> ===Solution=== We can use tool called <code>find</code> to find the file. <code>find /etc/ -name find-flag.txt</code> With this we get the file location. Then we can just print the contents of the file out to the screen with <code>cat /etc/tool..."