All Projects → pyscript → PyCPU

pyscript / PyCPU

Licence: MIT license
Central Processing Unit Information Gathering Tool

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to PyCPU

indicium
Portable, advanced system information utility
Stars: ✭ 46 (+142.11%)
Mutual labels:  cpu, system-information, system-info
yafetch
Yet another fetch ...
Stars: ✭ 27 (+42.11%)
Mutual labels:  system-information, system-info
ddcpuid
🔬 dd's x86 CPU Identification tool
Stars: ✭ 21 (+10.53%)
Mutual labels:  cpu, cpuid
yaf
Yet another system fetch that is minimal and customizable
Stars: ✭ 23 (+21.05%)
Mutual labels:  system-information, system-info
cpuwhat
Nim utilities for advanced CPU operations: CPU identification, ISA extension detection, bindings to assorted intrinsics
Stars: ✭ 25 (+31.58%)
Mutual labels:  cpu, cpuid
cpuid
C++ library for detecting CPU capabilities
Stars: ✭ 82 (+331.58%)
Mutual labels:  cpuid, cpuinfo
mir-cpuid
BetterC CPU Identification Routines
Stars: ✭ 25 (+31.58%)
Mutual labels:  cpu, cpuid
disfetch
Yet another *nix distro fetching program, but less complex.
Stars: ✭ 45 (+136.84%)
Mutual labels:  system-information, system-info
rasterator
Real-time software rasterizer written in C++ with windowing and model loading support.
Stars: ✭ 15 (-21.05%)
Mutual labels:  cpu
BMW-IntelOpenVINO-Detection-Inference-API
This is a repository for a No-Code object detection inference API using the OpenVINO. It's supported on both Windows and Linux Operating systems.
Stars: ✭ 66 (+247.37%)
Mutual labels:  cpu
CuVec
Unifying Python/C++/CUDA memory: Python buffered array ↔️ `std::vector` ↔️ CUDA managed memory
Stars: ✭ 73 (+284.21%)
Mutual labels:  cpu
mrisc32-a1
A pipelined, in-order, scalar VHDL implementation of the MRISC32 ISA
Stars: ✭ 21 (+10.53%)
Mutual labels:  cpu
psutil.cr
Psutils.cr is a Crystal port of https://github.com/shirou/gopsutil
Stars: ✭ 18 (-5.26%)
Mutual labels:  system-information
6502-emulator
An Understandable 6502 Emulator
Stars: ✭ 26 (+36.84%)
Mutual labels:  cpu
nes-rust
NES emulator in Rust with GUI
Stars: ✭ 78 (+310.53%)
Mutual labels:  cpu
mhrd-solutions
My solutions to the NAND-to-CPU game MHRD
Stars: ✭ 38 (+100%)
Mutual labels:  cpu
CSCvon8
A crazy small 8-bit CPU built with only seventeen 7400-series chips.
Stars: ✭ 86 (+352.63%)
Mutual labels:  cpu
R8051
8051 soft CPU core. 700-lines statements for 111 instructions . Fully synthesizable Verilog-2001 core.
Stars: ✭ 70 (+268.42%)
Mutual labels:  cpu
GNNSCVulDetector
Smart Contract Vulnerability Detection Using Graph Neural Networks (IJCAI-20 Accepted)
Stars: ✭ 42 (+121.05%)
Mutual labels:  vulnerability-detection
dr checker 4 linux
Port of "DR.CHECKER : A Soundy Vulnerability Detection Tool for Linux Kernel Drivers" to Clang/LLVM 10 and Linux Kernel
Stars: ✭ 34 (+78.95%)
Mutual labels:  vulnerability-detection

PyCPU - Central Processing Unit Information Gathering Tool

With this tool you can access detailed information of your processor information. You can also check the security vulnerability based on the current processor information of the processor you have used.

Programming Languages :

  • Python

System :

  • Linux

What is CPU ( Central Processing Unit ) ?

A central processing unit (CPU) is the electronic circuitry within a computer that carries out the instructions of a computer program by performing the basic arithmetic, logic, controlling and input/output (I/O) operations specified by the instructions.

RUN

root@ismailtasdelen:~# git clone https://github.com/ismailtasdelen/PyCPU.git
root@ismailtasdelen:~# cd PyCPU
root@ismailtasdelen:~/PyCPU# python PyCPU.py

What's on the tool menu ?

[1] CPU All Information Gathering
[2] Default Information Gathering
[3] CPU Vulnerability Check
[4] Exit

all_cpu() --> call the function. actually this function iscat /proc/cpuinfo running the code in the system. we can access all information.

processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 69
model name	: Intel(R) Core(TM) i5-4210U CPU @ 1.70GHz
stepping	: 1
microcode	: 0x1c
cpu MHz		: 1700.062
cache size	: 3072 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 2
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm epb tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid xsaveopt dtherm ida arat pln pts
bugs		:
bogomips	: 4788.92
clflush size	: 64
cache_alignment	: 64
address sizes	: 39 bits physical, 48 bits virtual
power management:
......

The cpu_info() function shows some simple cpu information.

vendor_id	: GenuineIntel
model name	: Intel(R) Core(TM) i5-4200U CPU @ 1.60GHz
microcode	: 0x24
cpu MHz		: 2446.218
cpu MHz		: 2574.107
cpu MHz		: 2294.998
cpu MHz		: 2295.091
cache size	: 3072 KB

The cpu_vulncheck() function performs the vulnerability check on the computer you are running.

bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf

Cloning an Existing Repository ( Clone with HTTPS )

root@ismailtasdelen:~# git clone https://github.com/ismailtasdelen/PyCPU.git

Cloning an Existing Repository ( Clone with SSH )

root@ismailtasdelen:~# git clone https://github.com/ismailtasdelen/PyCPU.git

Contact :

Mail : [email protected]
Linkedin : https://www.linkedin.com/in/ismailtasdelen
GitHub : https://github.com/ismailtasdelen
Telegram : https://t.me/ismailtasdelen
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].