M4rkZG

Root-me Information From Localhost

Apr 3rd, 2018
3,096
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.85 KB | None | 0 0
  1. Hello walkers
  2.  
  3. When I tried TO Bypass My Commande Injection Trick Or Cahllange From http://root-me.org
  4. I tried To Use Localhost Commande To find Some Targets And Files So I Hope This's Not fake detaits :)
  5.  
  6.  
  7. 127.0.0.1
  8.  
  9. PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data.
  10. 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.044 ms
  11. 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.029 ms
  12. 64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.029 ms
  13.  
  14. --- 127.0.0.1 ping statistics ---
  15. 3 packets transmitted, 3 received, 0% packet loss, time 1998ms
  16. rtt min/avg/max/mdev = 0.029/0.034/0.044/0.007 ms
  17. # This file has been automatically moved from your previous
  18. # /etc/mysql/my.cnf, with just this comment added at the top, to maintain MySQL
  19. # operation using your previously customised configuration.
  20.  
  21. # To switch to the new packaging configuration for automated management of
  22. # /etc/mysql/my.cnf across multiple variants:
  23. #
  24. # 1. Move your customisations from this file to /etc/mysql/conf.d/ and
  25. # to /etc/mysql/.conf.d/ as appropriate.
  26. # 2. Run "update-alternatives --remove my.cnf /etc/mysql/my.cnf.migrated"
  27. # 3. Remove the file /etc/mysql/my.cnf.migrated
  28.  
  29. # This is an example of a my.cnf file for mysqld_multi.
  30. # Usually this file is located in home dir ~/.my.cnf or /etc/my.cnf
  31. #
  32. # SOME IMPORTANT NOTES FOLLOW:
  33. #
  34. # 1.COMMON USER
  35. #
  36. # Make sure that the MySQL user, who is stopping the mysqld services, has
  37. # the same password to all MySQL servers being accessed by mysqld_multi.
  38. # This user needs to have the 'Shutdown_priv' -privilege, but for security
  39. # reasons should have no other privileges. It is advised that you create a
  40. # common 'multi_admin' user for all MySQL servers being controlled by
  41. # mysqld_multi. Here is an example how to do it:
  42. #
  43. # GRANT SHUTDOWN ON *.* TO multi_admin@localhost IDENTIFIED BY 'password'
  44. #
  45. # You will need to apply the above to all MySQL servers that are being
  46. # controlled by mysqld_multi. 'multi_admin' will shutdown the servers
  47. # using 'mysqladmin' -binary, when 'mysqld_multi stop' is being called.
  48. #
  49. # 2.PID-FILE
  50. #
  51. # If you are using mysqld_safe to start mysqld, make sure that every
  52. # MySQL server has a separate pid-file. In order to use mysqld_safe
  53. # via mysqld_multi, you need to use two options:
  54. #
  55. # mysqld=/path/to/mysqld_safe
  56. # ledir=/path/to/mysqld-binary/
  57. #
  58. # ledir (library executable directory), is an option that only mysqld_safe
  59. # accepts, so you will get an error if you try to pass it to mysqld directly.
  60. # For this reason you might want to use the above options within [mysqld#]
  61. # group directly.
  62. #
  63. # 3.DATA DIRECTORY
  64. #
  65. # It is NOT advised to run many MySQL servers within the same data directory.
  66. # You can do so, but please make sure to understand and deal with the
  67. # underlying caveats. In short they are:
  68. # - Speed penalty
  69. # - Risk of table/data corruption
  70. # - Data synchronising problems between the running servers
  71. # - Heavily media (disk) bound
  72. # - Relies on the system (external) file locking
  73. # - Is not applicable with all table types. (Such as InnoDB)
  74. # Trying so will end up with undesirable results.
  75. #
  76. # 4.TCP/IP Port
  77. #
  78. # Every server requires one and it must be unique.
  79. #
  80. # 5.[mysqld#] Groups
  81. #
  82. # In the example below the first and the fifth mysqld group was
  83. # intentionally left out. You may have 'gaps' in the config file. This
  84. # gives you more flexibility.
  85. #
  86. # 6.MySQL Server User
  87. #
  88. # You can pass the user=... option inside [mysqld#] groups. This
  89. # can be very handy in some cases, but then you need to run mysqld_multi
  90. # as UNIX root.
  91. #
  92. # 7.A Start-up Manage Script for mysqld_multi
  93. #
  94. # In the recent MySQL distributions you can find a file called
  95. # mysqld_multi.server.sh. It is a wrapper for mysqld_multi. This can
  96. # be used to start and stop multiple servers during boot and shutdown.
  97. #
  98. # You can place the file in /etc/init.d/mysqld_multi.server.sh and
  99. # make the needed symbolic links to it from various run levels
  100. # (as per Linux/Unix standard). You may even replace the
  101. # /etc/init.d/mysql.server script with it.
  102. #
  103. # Before using, you must create a my.cnf file either in /usr/my.cnf
  104. # or /root/.my.cnf and add the [mysqld_multi] and [mysqld#] groups.
  105. #
  106. # The script can be found from support-files/mysqld_multi.server.sh
  107. # in MySQL distribution. (Verify the script before using)
  108. #
  109.  
  110. [client]
  111. port = 3306
  112. socket = /var/run/mysqld/mysqld.sock
  113.  
  114. [mysqld_safe]
  115. socket = /var/run/mysqld/mysqld.sock
  116. nice = 0
  117.  
  118. [mysqld]
  119. #
  120. # * Basic Settings
  121. #
  122. user = mysql
  123. #pid-file = /var/run/mysqld/mysqld.pid
  124. socket = /var/run/mysqld.sock
  125. port = 3306
  126. basedir = /usr
  127. datadir = /var/lib/mysql
  128. tmpdir = /tmp
  129. lc-messages-dir = /usr/share/mysql
  130. skip-external-locking
  131. #
  132. # Instead of skip-networking the default is now to listen only on
  133. # localhost which is more compatible and is not less secure.
  134. bind-address = 127.0.0.1
  135. # mysql can only bind to one address, so remove previous line and uncomment
  136. # this one when ready for the futur (IPv6 is almost always tried first anyway
  137. # so this changes perfectly makes sens)
  138. #bind-address = ::1
  139.  
  140. #
  141. # * Fine Tuning
  142. #
  143. # Obsolete key_buffer option renamed to key_buffer_size by maintainer script
  144. key_buffer_size = 16M
  145. max_allowed_packet = 16M
  146. thread_stack = 192K
  147. thread_cache_size = 8
  148. # This replaces the startup script and checks MyISAM tables if needed
  149. # the first time they are touched
  150. # Obsolete myisam-recover option renamed to myisam_recover_options by maintainer script
  151. myisam_recover_options = BACKUP
  152. #max_connections = 100
  153. #table_cache = 64
  154. #thread_concurrency = 10
  155. #
  156. # * Query Cache Configuration
  157. #
  158. query_cache_limit = 1M
  159. query_cache_size = 16M
  160. #
  161. # * Logging and Replication
  162. #
  163. # Both location gets rotated by the cronjob.
  164. # Be aware that this log type is a performance killer.
  165. # As of 5.1 you can enable the log at runtime!
  166. #general_log_file = /var/log/mysql/mysql.log
  167. #general_log = 1
  168. #
  169. # Error log - should be very few entries.
  170. #
  171. log_error = /var/log/mysql/error.log
  172. #
  173. # Here you can see queries with especially long duration
  174. #log_slow_queries = /var/log/mysql/mysql-slow.log
  175. #long_query_time = 2
  176. #log-queries-not-using-indexes
  177. #
  178. # The following can be used as easy to replay backup logs or for replication.
  179. # note: if you are setting up a replication slave, see README.Debian about
  180. # other settings you may need to change.
  181. #server-id = 1
  182. #log_bin = /var/log/mysql/mysql-bin.log
  183. expire_logs_days = 10
  184. max_binlog_size = 100M
  185. #binlog_do_db = include_database_name
  186. #binlog_ignore_db = include_database_name
  187. #
  188. # * InnoDB
  189. #
  190. # InnoDB is enabled by default with a 10MB datafile in /var/lib/mysql/.
  191. # Read the manual for more InnoDB related options. There are many!
  192. #
  193. # * Security Features
  194. #
  195. # Read the manual, too, if you want chroot!
  196. # chroot = /var/lib/mysql/
  197. #
  198. # For generating SSL certificates I recommend the OpenSSL GUI "tinyca".
  199. #
  200. # ssl-ca=/etc/mysql/cacert.pem
  201. # ssl-cert=/etc/mysql/server-cert.pem
  202. # ssl-key=/etc/mysql/server-key.pem
  203.  
  204.  
  205. [mysqldump]
  206. quick
  207. quote-names
  208. max_allowed_packet = 16M
  209.  
  210.  
  211.  
  212. [mysql]
  213. #no-auto-rehash # faster start of mysql but no tab completition
  214.  
  215. [isamchk]
  216. # Obsolete key_buffer option renamed to key_buffer_size by maintainer script
  217. key_buffer_size = 16M
  218.  
  219.  
  220.  
  221.  
  222.  
  223. [mysqld_multi]
  224. mysqld = /usr/bin/mysqld_safe
  225. mysqladmin = /usr/bin/mysqladmin
  226. user = multi_admin
  227. password = dOd7A3hQpxlPZWW
  228. log = /var/log/mysql/mysqld_multi.log
  229.  
  230. ################################
  231. # liste des instances mysql
  232. ################################
  233. # FIXME : en accès par TCP/IP, on tombe toujours sur l'instance par défaut (ex: 57010 arrive sur mysqld1...). Pour accéder à une instance spécifique, il faut utiliser la socket uniquement.
  234.  
  235. [mysqld@01]
  236. # default mysql instance
  237. socket = /var/run/mysqld/mysqld.sock
  238. port = 3306
  239. pid-file = /var/run/mysqld/mysqld.pid
  240. datadir = /var/lib/mysql
  241. user = mysql
  242. log-error = /var/log/mysql/mysqld1.error.log
  243.  
  244.  
  245. [mysqld@02]
  246. # challenge realiste ch10
  247. socket = /var/run/mysqld/mysqld2-realiste-ch10.sock
  248. port = 57010
  249. pid-file = /var/run/mysqld/mysqld2-realiste-ch10.pid
  250. datadir = /var/lib/mysql-realiste-ch10
  251. user = mysql
  252. # restrict load_file
  253. secure_file_priv = /challenge/realiste/ch10/
  254. log-error = /var/log/mysql/mysqld2.error.log
  255.  
  256. [mysqld@03]
  257. # challenge web-serveur ch31
  258. socket = /var/run/mysqld/mysqld3-web-serveur-ch31.sock
  259. port = 50031
  260. pid-file = /var/run/mysqld/mysqld3-web-serveur-ch31.pid
  261. datadir = /var/lib/mysql-web-serveur-ch31
  262. user = mysql
  263. # restrict load_file
  264. secure_file_priv = /challenge/web-serveur/ch31/
  265. log-error = /var/log/mysql/mysqld3.error.log
  266.  
  267. #
  268. # * IMPORTANT: Additional settings that can override those from this file!
  269. # The files must end with '.cnf', otherwise they'll be ignored.
  270. #
  271. !includedir /etc/mysql/conf.d/
  272.  
  273.  
  274.  
  275. ********
  276.  
  277. drwxr-xr-x 2 root root 4096 Apr 5 2016 ODBCDataSources
  278. drwxr-xr-x 9 root root 4096 Feb 5 12:36 X11
  279. drwxr-xr-x 3 root root 4096 Feb 5 12:39 acpi
  280. -rw-r--r-- 1 root root 2981 Jul 23 2014 adduser.conf
  281. -rw-r--r-- 1 root root 121 Mar 10 12:23 aliases
  282. -rw-r--r-- 1 root root 12288 Mar 10 12:23 aliases.db
  283. drwxr-xr-x 2 root root 32768 Feb 27 04:10 alternatives
  284. drwxr-xr-x 9 root root 4096 Feb 26 11:44 apache2
  285. drwxr-xr-x 3 root root 4096 Feb 22 2015 apm
  286. drwxr-xr-x 3 root root 4096 Feb 26 08:43 apparmor
  287. drwxr-xr-x 9 root root 4096 Mar 3 13:51 apparmor.d
  288. drwxr-xr-x 6 root root 4096 Mar 3 11:12 apt
  289. drwxr-xr-x 2 root root 4096 Feb 5 12:39 at-spi2
  290. -rw-r----- 1 root daemon 144 Oct 21 2013 at.deny
  291. drwxr-x--- 3 root root 4096 Feb 26 08:44 audisp
  292. drwxr-x--- 3 root root 4096 Feb 26 08:44 audit
  293. -rw-r--r-- 1 root root 3115 Apr 3 04:08 banner
  294. -rw-r--r-- 1 root root 2188 May 16 2017 bash.bashrc
  295. -rw-r--r-- 1 root root 45 Mar 22 2014 bash_completion
  296. drwxr-xr-x 2 root root 4096 Feb 26 08:43 bash_completion.d
  297. drwxr-sr-x 3 root bind 4096 Feb 5 12:40 bind
  298. -rw-r--r-- 1 root root 367 Jan 27 2016 bindresvport.blacklist
  299. drwxr-xr-x 2 root root 4096 Oct 27 12:11 binfmt.d
  300. drwxr-xr-x 2 root root 4096 Feb 5 12:40 byobu
  301. drwxr-xr-x 3 root root 4096 Feb 22 2015 ca-certificates
  302. -rw-r--r-- 1 root root 9624 Oct 3 06:52 ca-certificates.conf
  303. -rw-r--r-- 1 root root 8948 Feb 25 2016 ca-certificates.conf.dpkg-old
  304. drwxr-xr-x 2 root root 4096 Feb 5 12:38 calendar
  305. -rw-r----- 1 root root 221 Mar 5 2017 cgconfig.conf
  306. -rw-r----- 1 root root 71 Mar 23 15:16 cgrules.conf
  307. drwxr-s--- 2 root dip 4096 Feb 5 12:44 chatscripts
  308. drwxr-xr-x 2 root root 4096 Feb 5 12:44 console-setup
  309. drwxr-xr-x 2 root root 4096 Mar 10 13:07 cron.d
  310. drwxr-xr-x 2 root root 4096 Feb 26 08:41 cron.daily
  311. drwxr-xr-x 2 root root 4096 Feb 5 12:36 cron.hourly
  312. drwxr-xr-x 2 root root 4096 Feb 5 12:36 cron.monthly
  313. drwxr-xr-x 2 root root 4096 Feb 26 08:41 cron.weekly
  314. -rw-r--r-- 1 root root 1033 Feb 23 2015 crontab
  315. drwxr-xr-x 3 root root 4096 Feb 22 2015 cruft
  316. drwxr-xr-x 4 root root 4096 Feb 5 12:36 dbus-1
  317. -rw-r--r-- 1 root root 2969 Feb 23 2014 debconf.conf
  318. -rw-r--r-- 1 root root 12 Apr 30 2015 debian_version
  319. drwxr-xr-x 3 root root 4096 Mar 10 10:15 default
  320. -rw-r--r-- 1 root root 604 Nov 7 2013 deluser.conf
  321. drwxr-xr-x 2 root root 4096 Feb 5 12:36 depmod.d
  322. drwxr-xr-x 4 root root 4096 Mar 3 13:52 dhcp
  323. drwxr-xr-x 2 root root 4096 Feb 7 13:05 dictionaries-common
  324. drwxr-xr-x 3 root root 4096 Feb 5 12:40 dkms
  325. drwxr-xr-x 4 root root 4096 Feb 5 12:40 dpkg
  326. -rw-r--r-- 1 root root 9129 Jan 13 09:41 drirc
  327. drwxr-xr-x 3 root root 4096 Feb 7 13:05 emacs
  328. -rw-r--r-- 1 root root 96 Jul 23 2014 environment
  329. drwxr-xr-x 12 root root 4096 Mar 17 08:56 etckeeper
  330. drwxr-xr-x 4 root root 4096 Feb 5 12:36 fonts
  331. drwxr-xr-x 2 root root 4096 Feb 7 13:22 freetds
  332. -rw-r--r-- 1 root root 619 Mar 5 11:53 fstab
  333. -rw-r--r-- 1 root mysql 280 May 24 2013 fuse.conf
  334. -rw-r--r-- 1 root root 2584 Oct 10 2012 gai.conf
  335. drwxr-x--- 4 root webssh 4096 Mar 9 2017 gateone
  336. drwxr-xr-x 2 root root 4096 Feb 5 12:38 gdb
  337. drwxr-xr-x 3 root root 4096 Jun 5 2015 ghostscript
  338. drwxr-xr-x 2 root root 4096 Feb 5 12:38 groff
  339. -rw-r--r-- 1 root root 2307 Mar 10 17:39 group
  340. -rw------- 1 root root 2290 Mar 10 17:39 group-
  341. -rw-r--r-- 1 root root 2064 Feb 5 12:31 group.org
  342. drwxr-xr-x 2 root root 4096 Feb 26 08:43 grub.d
  343. -rw-r----- 1 root shadow 1530 Mar 10 17:39 gshadow
  344. -rw------- 1 root root 1513 Mar 10 17:39 gshadow-
  345. drwxr-xr-x 3 root root 4096 Feb 5 12:31 gss
  346. drwxr-xr-x 2 root root 4096 Feb 5 12:40 gtk-2.0
  347. -rw-r--r-- 1 root root 4781 Nov 15 2013 hdparm.conf
  348. -rw-r--r-- 1 root root 110 Mar 22 2017 host.conf
  349. -rw-r--r-- 1 root root 12 Feb 22 2015 hostname
  350. -rw-r--r-- 1 root root 378 Feb 26 18:51 hosts
  351. -rw-r--r-- 1 root root 411 Feb 22 2015 hosts.allow
  352. -rw-r--r-- 1 root root 711 Feb 22 2015 hosts.deny
  353. drwxr-xr-x 2 root root 4096 Feb 5 12:44 icedtea-web
  354. drwxr-xr-x 3 root root 4096 Feb 22 2015 ifplugd
  355. drwxr-xr-x 2 root root 12288 Mar 20 06:16 init
  356. drwxr-xr-x 2 root root 4096 Mar 20 06:16 init.d
  357. drwxr-xr-x 5 root root 4096 Feb 5 12:36 initramfs-tools
  358. -rw-r--r-- 1 root root 1721 Mar 28 2014 inputrc
  359. drwxr-xr-x 3 root root 4096 Feb 22 2015 insserv
  360. -rw-r--r-- 1 root root 771 May 19 2013 insserv.conf
  361. drwxr-xr-x 2 root root 4096 Feb 26 08:43 insserv.conf.d
  362. drwxr-xr-x 2 root root 4096 Feb 5 12:36 iproute2
  363. drwxr-xr-x 2 root root 4096 Feb 22 2015 iscsi
  364. -rw-r--r-- 1 root root 26 Feb 20 09:44 issue
  365. -rw-r--r-- 1 root root 319 Apr 3 04:08 issue.net
  366. -rw-r--r-- 1 root root 19 Feb 20 09:44 issue.net.dpkg-dist
  367. drwxr-xr-x 5 root root 4096 Feb 16 2017 java-6-openjdk
  368. drwxr-xr-x 3 root root 4096 Oct 20 2016 java-8-oracle
  369. drwxr-xr-x 2 root root 4096 Feb 5 12:45 kbd
  370. drwxr-xr-x 6 root root 4096 Feb 5 12:34 kernel
  371. -rw-r--r-- 1 root root 144 Feb 22 2015 kernel-img.conf
  372. -rw-r--r-- 1 root root 60671 Mar 30 06:20 ld.so.cache
  373. -rw-r--r-- 1 root root 34 Jul 23 2014 ld.so.conf
  374. drwxr-xr-x 2 root root 4096 Feb 5 12:53 ld.so.conf.d
  375. drwxr-xr-x 5 root root 4096 Feb 7 10:42 ldap
  376. -rw-r--r-- 1 root root 49 Jan 25 2013 ldapvi.conf
  377. -rw-r--r-- 1 root root 0 Apr 3 04:08 legal
  378. -rw-r--r-- 1 root root 191 Dec 4 2013 libaudit.conf
  379. drwxr-xr-x 2 root root 4096 Feb 5 12:40 libnl-3
  380. drwxr-xr-x 4 root root 4096 Apr 24 2015 lighttpd
  381. -rw-r--r-- 1 root root 2995 Jan 15 03:48 locale.alias
  382. -rw-r--r-- 1 root root 9149 Feb 5 12:36 locale.gen
  383. lrwxrwxrwx 1 root root 32 Feb 5 12:34 localtime -> /usr/share/zoneinfo/Europe/Paris
  384. drwxr-xr-x 5 root root 4096 Feb 22 2015 logcheck
  385. -rw-r--r-- 1 root root 10551 Feb 17 2014 login.defs
  386. -rw-r--r-- 1 root root 703 Jan 22 2014 logrotate.conf
  387. drwxr-xr-x 2 root root 4096 Mar 20 06:16 logrotate.d
  388. -rw-r--r-- 1 root root 105 Feb 20 09:43 lsb-release
  389. -rw-r--r-- 1 root root 14867 May 10 2014 ltrace.conf
  390. drwxr-xr-x 4 root root 4096 Feb 5 12:44 lvm
  391. -r--r--r-- 1 root root 33 Feb 5 12:30 machine-id
  392. -rw-r--r-- 1 root root 111 Apr 3 2014 magic
  393. -rw-r--r-- 1 root root 111 Apr 3 2014 magic.mime
  394. -rw-r--r-- 1 root root 4205 Mar 3 13:51 mailcap
  395. -rw-r--r-- 1 root root 449 May 13 2013 mailcap.order
  396. -rw-r--r-- 1 root root 5170 Nov 7 2015 manpath.config
  397. -rw-r--r-- 1 root root 24241 Oct 30 2015 mime.types
  398. -rw-r--r-- 1 root root 967 Oct 30 2015 mke2fs.conf
  399. drwxr-xr-x 2 root root 4096 Feb 26 08:44 modprobe.d
  400. -rw-r--r-- 1 root root 198 Feb 5 12:36 modules
  401. drwxr-xr-x 2 root root 4096 Feb 6 06:42 modules-load.d
  402. -rw-r--r-- 1 root root 125749 Jun 17 2011 moduli
  403. -rw-r--r-- 1 root root 2382 Jan 8 2017 mongodb.conf
  404. drwxr-xr-x 6 root root 4096 Feb 7 13:02 mono
  405. lrwxrwxrwx 1 root root 19 Jul 2 2017 mtab -> ../proc/self/mounts
  406. drwxr-xr-x 4 root root 4096 Mar 10 18:13 mysql
  407. -rw-r--r-- 1 root root 1911 May 1 2012 nail.rc
  408. -rw-r--r-- 1 root root 8338 Feb 15 2017 nanorc
  409. drwxr-xr-x 7 root root 4096 Mar 17 10:29 network
  410. -rw-r--r-- 1 root root 82 Feb 22 2015 networks
  411. drwxr-xr-x 2 root root 4096 Feb 5 12:38 newt
  412. drwxr-x--- 6 root root 4096 Feb 5 12:37 nginx
  413. -rw-r--r-- 1 root root 502 Feb 7 19:01 nsswitch.conf
  414. -rw-r--r-- 1 root root 0 Apr 5 2016 odbc.ini
  415. -rw-r--r-- 1 root root 0 Feb 7 13:25 odbcinst.ini
  416. drwxr-xr-x 2 root root 4096 Jul 23 2014 opt
  417. drwxr-xr-x 2 root root 4096 Feb 5 12:46 oracle-java9-jdk
  418. lrwxrwxrwx 1 root root 21 Feb 20 09:44 os-release -> ../usr/lib/os-release
  419. -rw-r--r-- 1 root root 552 Jan 31 2014 pam.conf
  420. drwxr-xr-x 2 root root 4096 Feb 26 08:44 pam.d
  421. -rw-r--r-- 1 root root 4150 Feb 5 12:38 passwd
  422. -rw------- 1 root root 4150 Feb 5 12:38 passwd-
  423. -rw-r--r-- 1 root root 3948 Feb 5 12:31 passwd.org
  424. drwxr-xr-x 2 root root 4096 Feb 27 04:10 pear
  425. -rw-r----- 1 root root 1104 Feb 27 15:26 pear.conf
  426. drwxr-xr-x 4 root root 4096 Feb 5 12:30 perl
  427. drwxr-xr-x 3 root root 4096 Feb 5 12:35 php
  428. lrwxrwxrwx 1 root root 45 Feb 27 2015 php-fpm.conf -> /opt/phpfarm/inst/php-5.2.17/etc/php-fpm.conf
  429. -rw-r--r-- 1 root root 21553 Feb 27 15:26 php-fpm.conf.default
  430. drwxr-xr-x 5 root root 4096 Feb 7 18:22 php5
  431. drwxr-xr-x 3 root root 4096 Feb 22 2015 pm
  432. drwxr-xr-x 5 root root 4096 Feb 22 2015 polkit-1
  433. -rw-r--r-- 1 root root 350 Feb 22 2015 popularity-contest.conf
  434. drwxr-xr-x 3 root root 4096 Mar 10 11:29 postfix
  435. drwxr-xr-x 4 root root 4096 Feb 5 12:43 postgresql
  436. drwxr-xr-x 3 root root 4096 Feb 5 12:43 postgresql-common
  437. drwxr-xr-x 8 root root 4096 Feb 5 12:44 ppp
  438. -rw-r--r-- 1 root root 676 May 1 2015 profile
  439. drwxr-xr-x 2 root root 4096 Apr 3 04:08 profile.d
  440. -rw-r--r-- 1 root root 2932 Dec 30 2013 protocols
  441. drwxr-xr-x 2 root root 4096 Feb 5 12:40 pulse
  442. drwxr-xr-x 2 root root 4096 Feb 22 2015 python
  443. drwxr-xr-x 2 root root 4096 Feb 5 12:32 python2.7
  444. drwxr-xr-x 2 root root 4096 Feb 22 2015 python3
  445. drwxr-xr-x 2 root root 4096 Nov 29 06:40 python3.4
  446. drwxr-xr-x 2 root root 4096 Feb 5 12:32 python3.5
  447. -rwxr-xr-x 1 root root 508 Oct 14 12:39 rc.local
  448. drwxr-xr-x 2 root root 4096 Apr 3 04:07 rc0.d
  449. drwxr-xr-x 2 root root 4096 Apr 3 04:07 rc1.d
  450. drwxr-xr-x 2 root root 4096 Mar 9 10:29 rc2.d
  451. drwxr-xr-x 2 root root 4096 Mar 9 10:29 rc3.d
  452. drwxr-xr-x 2 root root 4096 Mar 9 10:29 rc4.d
  453. drwxr-xr-x 2 root root 4096 Mar 9 10:29 rc5.d
  454. drwxr-xr-x 2 root root 4096 Apr 3 04:07 rc6.d
  455. drwxr-xr-x 2 root root 4096 Feb 26 08:41 rcS.d
  456. -rw-r--r-- 1 root root 497 May 1 2015 reboot.msg
  457. lrwxrwxrwx 1 root root 29 Feb 22 2015 resolv.conf -> ../run/resolvconf/resolv.conf
  458. drwxr-xr-x 5 root root 4096 Feb 26 08:43 resolvconf
  459. -rw-r--r-- 1 root root 45369 Nov 12 2015 rkhunter.conf
  460. -rwxr-xr-x 1 root root 268 Feb 4 2014 rmt
  461. -rw-r--r-- 1 root root 887 Dec 30 2013 rpc
  462. -rw-r--r-- 1 root root 1518 Aug 1 2015 rsyslog.conf
  463. -rw-r--r-- 1 root root 1371 Jan 27 2016 rsyslog.conf.dpkg-dist
  464. drwxr-xr-x 2 root root 4096 Mar 17 16:34 rsyslog.d
  465. -rw-r--r-- 1 root root 6299 Jan 2 2016 s-nail.rc
  466. -rw-r--r-- 1 root root 3663 Mar 20 2012 screenrc
  467. -rw-r--r-- 1 root root 4038 Feb 17 2014 securetty
  468. drwxr-xr-x 4 root root 4096 Feb 5 12:38 security
  469. drwxr-xr-x 2 root root 4096 Feb 5 12:31 selinux
  470. drwxr-xr-x 2 root root 4096 Feb 5 12:37 sensors.d
  471. -rw-r--r-- 1 root root 10368 Oct 2 2015 sensors3.conf
  472. -rw-r--r-- 1 root root 19605 Oct 25 2014 services
  473. drwxr-xr-x 2 root root 4096 Feb 22 2015 sgml
  474. -rw-r----- 1 root shadow 2850 Mar 10 13:24 shadow
  475. -rw------- 1 root root 2850 Feb 5 12:38 shadow-
  476. -rw-r----- 1 root shadow 2824 Feb 5 12:31 shadow.org
  477. -rw-r--r-- 1 root root 103 Feb 5 12:40 shells
  478. drwxr-xr-x 2 root root 4096 Feb 5 12:33 skel
  479. drwxr-xr-x 4 root root 4096 Mar 14 08:23 snmp
  480. drwxr-xr-x 2 root root 4096 Feb 5 12:45 ssh
  481. drwxr-xr-x 4 root root 4096 Mar 30 06:20 ssl
  482. -rw-r--r-- 1 root root 637 Sep 13 2017 subgid
  483. -rw------- 1 root root 606 Sep 12 2017 subgid-
  484. -rw-r--r-- 1 root root 637 Sep 13 2017 subuid
  485. -rw------- 1 root root 606 Sep 12 2017 subuid-
  486. -r--r----- 1 root root 755 Oct 14 2016 sudoers
  487. drwxr-xr-x 2 root root 4096 Feb 5 12:39 sudoers.d
  488. -rw-r--r-- 1 root root 2084 Apr 1 2013 sysctl.conf
  489. drwxr-xr-x 2 root root 4096 Feb 6 06:42 sysctl.d
  490. drwxr-xr-x 2 root root 4096 Feb 5 12:44 sysstat
  491. drwxr-xr-x 5 root root 4096 Feb 6 06:42 systemd
  492. drwxr-xr-x 2 root root 4096 Feb 5 12:33 terminfo
  493. drwxr-xr-x 2 root root 4096 Feb 5 12:44 thermald
  494. -rw-r--r-- 1 root root 13 Feb 5 12:34 timezone
  495. drwxr-xr-x 2 root root 4096 Oct 27 12:11 tmpfiles.d
  496. -rw-r--r-- 1 root root 1260 Jul 1 2013 ucf.conf
  497. drwxr-xr-x 4 root root 4096 Feb 6 06:42 udev
  498. drwxr-xr-x 3 root root 4096 Feb 5 12:44 ufw
  499. drwxr-xr-x 3 root root 4096 Feb 26 08:43 update-manager
  500. drwxr-xr-x 2 root root 4096 Feb 26 08:43 update-motd.d
  501. drwxr-xr-x 2 root root 4096 Feb 22 2015 update-notifier
  502. -rw-r--r-- 1 root root 338 Nov 18 2014 updatedb.conf
  503. -rw-r--r-- 1 root root 270 May 19 2016 upstart-xsessions
  504. drwxr-xr-x 2 root root 4096 Feb 5 12:39 vim
  505. drwxr-xr-x 3 root root 4096 Feb 26 08:45 vmware-tools
  506. drwxr-x--- 2 root root 4096 Aug 8 2016 vsftpd
  507. -rw-r----- 1 root root 5550 Jan 13 2015 vsftpd.conf.orig
  508. lrwxrwxrwx 1 root root 23 Feb 22 2015 vtrgb -> /etc/alternatives/vtrgb
  509. drwxr-xr-x 2 root root 4096 Feb 5 12:44 w3m
  510. -rw-r--r-- 1 root root 4942 Oct 24 13:16 wgetrc
  511. drwxr-xr-x 2 root root 4096 Feb 5 12:44 wpa_supplicant
  512. drwxr-xr-x 4 root root 4096 Feb 5 12:39 xdg
  513. -rw-r--r-- 1 root root 289 Oct 26 2013 xinetd.conf
  514. drwxr-xr-x 2 root root 4096 Feb 5 12:44 xinetd.d
  515. drwxr-xr-x 2 root root 4096 Feb 22 2015 xml
  516. -rw-r--r-- 1 root root 477 Jul 19 2015 zsh_command_not_found
  517.  
  518. --- 127.0.0.1 ping statistics ---
  519. 3 packets transmitted, 3 received, 0% packet loss, time 1998ms
  520. rtt min/avg/max/mdev = 0.041/0.049/0.058/0.007 ms
  521. root:x:0:0:root:/root:/bin/bash
  522. daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
  523. bin:x:2:2:bin:/bin:/usr/sbin/nologin
  524. sys:x:3:3:sys:/dev:/usr/sbin/nologin
  525. sync:x:4:65534:sync:/bin:/bin/sync
  526. games:x:5:60:games:/usr/games:/usr/sbin/nologin
  527. man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
  528. lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
  529. mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
  530. news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
  531. uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin
  532. proxy:x:13:13:proxy:/bin:/usr/sbin/nologin
  533. www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin
  534. backup:x:34:34:backup:/var/backups:/usr/sbin/nologin
  535. list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin
  536. irc:x:39:39:ircd:/var/run/ircd:/usr/sbin/nologin
  537. gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/usr/sbin/nologin
  538. nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin
  539. syslog:x:101:103::/home/syslog:/bin/false
  540. mysql:x:102:105:MySQL Server,,,:/var/lib/mysql:/bin/false
  541. sshd:x:103:65534::/var/run/sshd:/usr/sbin/nologin
  542. challenge:x:1001:1001::/home/challenge:/bin/bash
  543. messagebus:x:106:116::/var/run/dbus:/bin/false
  544. lxc-dnsmasq:x:107:117:LXC dnsmasq,,,:/var/lib/lxc:/bin/false
  545. openldap:x:108:118:OpenLDAP Server Account,,,:/var/lib/ldap:/bin/false
  546. postfix:x:105:114::/var/spool/postfix:/bin/false
  547. bind:x:109:119::/var/cache/bind:/bin/false
  548. snmp:x:104:110::/var/lib/snmp:/bin/false
  549. web-serveur-ch13:x:1002:1002::/challenge/web-serveur/ch13:/bin/false
  550. web-serveur-ch29:x:1003:1003:,,,:/challenge/web-serveur/ch29:/bin/false
  551. realiste-ch11:x:1004:1004:,,,:/dev/null:/bin/false
  552. ntp:x:110:120::/home/ntp:/bin/false
  553. postgres:x:112:122:PostgreSQL administrator,,,:/var/lib/postgresql:/bin/bash
  554. mongodb:x:113:65534::/home/mongodb:/bin/false
  555. realiste-ch16:x:1005:1005:,,,:/dev/null:/bin/false
  556. cryptanalyse-ch31:x:1031:1031::/challenge/cryptanalyse/ch31:/bin/bash
  557. cryptanalyse-ch31-cracked:x:1131:1131::/challenge/cryptanalyse/ch31:/bin/false
  558. cryptanalyse-ch27:x:1027:1027::/challenge/cryptanalyse/ch27:/bin/bash
  559. cryptanalyse-ch27-cracked:x:1127:1127::/challenge/cryptanalyse/ch27:/bin/false
  560. cryptanalyse-ch21:x:1006:1006::/challenge/cryptanalyse/ch21:/bin/bash
  561. cryptanalyse-ch21-cracked:x:1106:1106::/challenge/cryptanalyse/ch21:/bin/bash
  562. cryptanalyse-ch22-cracked:x:1107:1107::/challenge/cryptanalyse/ch22:/bin/false
  563. cryptanalyse-ch24-cracked:x:1108:1108::/challenge/cryptanalyse/ch24:/bin/bash
  564. programmation-ch10-cracked:x:1000:1000:,,,:/challenge/programmation-ch10-cracked:/bin/false
  565. programmation-ch10:x:1007:1007:,,,:/challenge/programmation/ch10:/bin/bash
  566. programmation-ch11:x:1009:1009:,,,:/challenge/programmation/ch11:/bin/bash
  567. web-serveur-ch41:x:1109:1109::/challenge/web-serveur/ch41:/bin/bash
  568. webssh:x:1110:1110:User for GateOne webssh:/dev/null:/usr/sbin/nologin
  569. web-serveur-ch37:x:1111:1111::/challenge/web-serveur/ch37:/bin/false
  570. web-serveur-ch43:x:1112:1112::/challenge/web-serveur/ch43:/bin/bash
  571. web-serveur-ch20:x:1008:1008:,,,:/challenge/web-serveur/ch20:/bin/false
  572. web-serveur-ch21:x:1010:1010:,,,:/challenge/web-serveur/ch21:/bin/false
  573. web-serveur-ch22:x:1011:1011:,,,:/challenge/web-serveur/ch22:/bin/false
  574. realiste-ch8:x:1012:1012:,,,:/challenge/realiste/ch8:/bin/false
  575. web-serveur-ch47:x:1128:1128::/challenge/web-serveur/ch47:/bin/false
  576. web-serveur-ch46:x:1129:1129::/challenge/web-serveur/ch46:/bin/false
  577. web-serveur-ch50:x:1150:1150::/challenge/web-serveur/ch50:/bin/false
  578. web-serveur-ch51:x:1151:1151::/challenge/web-serveur/ch51:/bin/false
  579. realiste-ch24:x:1013:1013:,,,:/challenge/realiste/ch24:/bin/false
  580. web-serveur-ch53:x:1014:1014:,,,:/challenge/web-serveur/ch53:/bin/false
  581. web-serveur-ch54:x:1015:1015:,,,:/challenge/web-serveur/ch54:/bin/false
  582. web-serveur-ch56:x:1016:1016:,,,:/challenge/web-serveur/ch56:/bin/false
  583. systemd-timesync:x:111:124:systemd Time Synchronization,,,:/run/systemd:/bin/false
  584. systemd-network:x:114:125:systemd Network Management,,,:/run/systemd/netif:/bin/false
  585. systemd-resolve:x:115:126:systemd Resolver,,,:/run/systemd/resolve:/bin/false
  586. systemd-bus-proxy:x:116:127:systemd Bus Proxy,,,:/run/systemd:/bin/false
  587. uuidd:x:100:101::/run/uuidd:/bin/false
  588. _apt:x:117:65534::/nonexistent:/bin/false
Advertisement
Add Comment
Please, Sign In to add comment