使用 curl 读取 Linux /proc 目录

使用 curl 读取 Linux /proc 目录

我有一个允许遍历目录的服务器,我可以使用 curl 来读取系统操作文件。

我也想读取 /proc 目录,但是由于某种原因,我收到了这个:

curl -v http://myserver:9999///proc/cpuinfo
*   Trying myserver...
* TCP_NODELAY set
* Connected to myserver (myserver) port 9999 (#0)
> GET ///proc/cpuinfo HTTP/1.1
> Host: myserver:9999
> User-Agent: curl/7.60.0
> Accept: */*
> 
< HTTP/1.1 200 OK
< Accept-Ranges: bytes
< Cache-Control: no-cache
< Content-length: 0
< Content-type: text/plain
< 
* Connection #0 to host myserver left intact

也许原因是 Content-lenght 等于零,但即使我传递了参数--ignore-content-lenght,结果仍然是一样的。

如果我使用 cat:

cat /proc/cpuinfo
processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model       : 78
model name  : Intel(R) Core(TM) i5-6200U CPU @ 2.30GHz
stepping    : 3
cpu MHz     : 2400.032
cache size  : 3072 KB
physical id : 0
siblings    : 1
core id     : 0
cpu cores   : 1
apicid      : 0
initial apicid  : 0
fpu     : yes
fpu_exception   : yes
cpuid level : 22
wp      : yes
flags       : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 syscall nx rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc eagerfpu pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx rdrand hypervisor lahf_lm abm 3dnowprefetch rdseed clflushopt
bugs        :
bogomips    : 4800.06
clflush size    : 64
cache_alignment : 64
address sizes   : 39 bits physical, 48 bits virtual
power management:

有什么帮助吗?谢谢

答案1

这个问题似乎不太“合法”,如果我误导了您请原谅我,但您看起来好像正在访问别人的服务器……

至于 /proc 目录,它是一个特殊的目录,其中的每个“文件”都映射到内核访问并报告空大小。

我认为文件读取脚本实际上无法处理这些问题。

相关内容