Simplistic yet fancy CPU architecture fetching tool
1. Support
cpufetch currently supports x86_64 CPUs (both Intel and AMD) and ARM. Platform x86_64 ARM Notes Linux βοΈ βοΈ Prefered platform.
Experimental ARM support Windows βοΈ β Some information may be missing.
Colors will be used if supported Android β βοΈ Experimental ARM support macOS βοΈ β Some information may be missing Emoji Meaning βοΈ Supported β Not supported β Not tested
2. Installation
2.1 Building from source
Just clone the repo and use make to compile it git clone https://github.com/Dr-Noob/cpufetch
cd cpufetch
make
./cpufetch
The Makefile is designed to work on Linux, Windows (https://www.kitploit.com/search/label/Windows) and macOS.
2.2 Linux
There is a cpufetch package available in Arch Linux (https://www.kitploit.com/search/label/Arch%20Linux) (cpufetch-git (https://aur.archlinux.org/packages/cpufetch-git)). If you are in another distribution, you can build cpufetch from source.
2.2 Windows
In the releases (https://github.com/Dr-Noob/cpufetch/releases) section you will find some cpufetch executables compiled for Windows. Just download and run it from Windows CMD. You can also build cpufetch from source.
2.3 macOS
You need to build cpufetch from source.
2.4 Android
Install termux app (terminal emulator) Run pkg install -y git make clang inside termux. Build from source normally: git clone https://github.com/Dr-Noob/cpufetch cd cpufetch make ./cpufetch
3. Examples
Here are more examples of how cpufetch looks on different CPUs.
3.1 x86_64 CPUs
1. Support
cpufetch currently supports x86_64 CPUs (both Intel and AMD) and ARM. Platform x86_64 ARM Notes Linux βοΈ βοΈ Prefered platform.
Experimental ARM support Windows βοΈ β Some information may be missing.
Colors will be used if supported Android β βοΈ Experimental ARM support macOS βοΈ β Some information may be missing Emoji Meaning βοΈ Supported β Not supported β Not tested
2. Installation
2.1 Building from source
Just clone the repo and use make to compile it git clone https://github.com/Dr-Noob/cpufetch
cd cpufetch
make
./cpufetch
The Makefile is designed to work on Linux, Windows (https://www.kitploit.com/search/label/Windows) and macOS.
2.2 Linux
There is a cpufetch package available in Arch Linux (https://www.kitploit.com/search/label/Arch%20Linux) (cpufetch-git (https://aur.archlinux.org/packages/cpufetch-git)). If you are in another distribution, you can build cpufetch from source.
2.2 Windows
In the releases (https://github.com/Dr-Noob/cpufetch/releases) section you will find some cpufetch executables compiled for Windows. Just download and run it from Windows CMD. You can also build cpufetch from source.
2.3 macOS
You need to build cpufetch from source.
2.4 Android
Install termux app (terminal emulator) Run pkg install -y git make clang inside termux. Build from source normally: git clone https://github.com/Dr-Noob/cpufetch cd cpufetch make ./cpufetch
3. Examples
Here are more examples of how cpufetch looks on different CPUs.
3.1 x86_64 CPUs
3.2 ARM CPUs
4. Colors and style
By default, cpufetch will print the CPU art with the system colorscheme. However, you can always set a custom color scheme, either specifying Intel or AMD, or specifying the colors in RGB format: ./cpufetch --color intel (default color for Intel)
./cpufetch --color amd (default color for AND)
./cpufetch --color 239,90,45:210,200,200:100,200,45:0,200,200 (example)
In the case of setting the colors using RGB, 4 colors must be given in with the format: [R,G,B:R,G,B:R,G,B:R,G,B]. These colors correspond to CPU art color (2 colors) and for the text colors (following 2). Thus, you can customize all the colors.
5. Implementation
See cpufetch programming documentation (https://github.com/Dr-Noob/cpufetch/blob/master/doc/README.md).
6. Bugs or improvements
There are many open issues in github (see issues (https://github.com/Dr-Noob/cpufetch/issues)). Feel free to open a new one report an issue or propose any improvement in cpufetch I would like to thank Gonzalocl (https://github.com/Gonzalocl) and OdnetninI (https://github.com/OdnetninI) for their help, running cpufetch in many different CPUs they have access (https://www.kitploit.com/search/label/Access) to, which makes it easier to debug and check the correctness of cpufetch.
Download Cpufetch (https://github.com/Dr-Noob/cpufetch)
By default, cpufetch will print the CPU art with the system colorscheme. However, you can always set a custom color scheme, either specifying Intel or AMD, or specifying the colors in RGB format: ./cpufetch --color intel (default color for Intel)
./cpufetch --color amd (default color for AND)
./cpufetch --color 239,90,45:210,200,200:100,200,45:0,200,200 (example)
In the case of setting the colors using RGB, 4 colors must be given in with the format: [R,G,B:R,G,B:R,G,B:R,G,B]. These colors correspond to CPU art color (2 colors) and for the text colors (following 2). Thus, you can customize all the colors.
5. Implementation
See cpufetch programming documentation (https://github.com/Dr-Noob/cpufetch/blob/master/doc/README.md).
6. Bugs or improvements
There are many open issues in github (see issues (https://github.com/Dr-Noob/cpufetch/issues)). Feel free to open a new one report an issue or propose any improvement in cpufetch I would like to thank Gonzalocl (https://github.com/Gonzalocl) and OdnetninI (https://github.com/OdnetninI) for their help, running cpufetch in many different CPUs they have access (https://www.kitploit.com/search/label/Access) to, which makes it easier to debug and check the correctness of cpufetch.
Download Cpufetch (https://github.com/Dr-Noob/cpufetch)
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!
Cpufetch - Simplistic Yet Fancy CPU Architecture Fetching Tool
https://1.bp.blogspot.com/-gW4iYIx5CtU/YGvhCi0WHtI/AAAAAAAAV0w/BVU7TtULfJ4WX32_09My7WRrmnWotrnfgCNcBGAsYHQ/w640-h224/cpufetch_7_i9.png Simplistic yet fancy CPU architecture fetching tool 1. Supportcpufetch currently supports x86_64 CPUs (both Intel and AMD) and ARM.
Platform x86_64 ARM Notes Linux
βοΈ
βοΈ
Prefered platform.
Experimental ARM support Windows
βοΈ
β
Some information may be missing.
Colors will be used if supported Android
β
βοΈ
Experimental ARM support macOS
βοΈ
β
Some information may be missing Emoji Meaning
βοΈ
Supported
β
Not supported
β
Not tested 2. Installation2.1 Building from sourceJust clone the repo and use
2. Run
3. Build from source normally:
* git clone https://github.com/Dr-Noob/cpufetch
* cd cpufetch
* make
* ./cpufetch 3. ExamplesHere are more examples of how
Cpufetch - Simplistic Yet Fancy CPU Architecture Fetching Tool
https://1.bp.blogspot.com/-gW4iYIx5CtU/YGvhCi0WHtI/AAAAAAAAV0w/BVU7TtULfJ4WX32_09My7WRrmnWotrnfgCNcBGAsYHQ/w640-h224/cpufetch_7_i9.png Simplistic yet fancy CPU architecture fetching tool 1. Supportcpufetch currently supports x86_64 CPUs (both Intel and AMD) and ARM.
Platform x86_64 ARM Notes Linux
βοΈ
βοΈ
Prefered platform.
Experimental ARM support Windows
βοΈ
β
Some information may be missing.
Colors will be used if supported Android
β
βοΈ
Experimental ARM support macOS
βοΈ
β
Some information may be missing Emoji Meaning
βοΈ
Supported
β
Not supported
β
Not tested 2. Installation2.1 Building from sourceJust clone the repo and use
maketo compile it git clone https://github.com/Dr-Noob/cpufetch
cd cpufetch
make
./cpufetch The Makefile is designed to work on Linux, Windows and macOS. 2.2 LinuxThere is a cpufetch package available in Arch Linux (cpufetch-git). If you are in another distribution, you can build cpufetchfrom source. 2.2 WindowsIn the releases section you will find some cpufetch executables compiled for Windows. Just download and run it from Windows CMD. You can also build cpufetchfrom source. 2.3 macOSYou need to build cpufetchfrom source. 2.4 Android1. Install termuxapp (terminal emulator)2. Run
pkg install -y git make clanginside termux.3. Build from source normally:
* git clone https://github.com/Dr-Noob/cpufetch
* cd cpufetch
* make
* ./cpufetch 3. ExamplesHere are more examples of how
cpufetchlooks on different CPUs. 3.1 x86_64 CPUshttps://1.bp.blogspot.com/-fFmkaqMp5qM/YGvhKvuE5_I/AAAAAAAAV04/1cxvYR0awmEHVHpfc1ZRPb6878gF941zwCNcBGAsYHQ/w640-h246/cpufetch_8_epyc.png https://1.bp.blogspot.com/-BoCNiF_Mqg8/YGvhKiEovqI/AAAAAAAAV00/RlkLaqx5wAoGfy2RTAfdhbg4EO_qiqL4wCNcBGAsYHQ/w640-h230/cpufetch_9_cascade_lake.png 3.2 ARM CPUshttps://1.bp.blogspot.com/-liHK00gR8qM/YGvhQARp_UI/AAAAAAAAV1A/ouY0-MaMm7ICBCsrfvpCeS0F2BGlAcK1gCNcBGAsYHQ/w640-h218/cpufetch_11_snapdragon.png https://1.bp.blogspot.com/-a3y22tYqlAk/YGvhQOcvTZI/AAAAAAAAV08/J5y8fKfYp9spQALMfEb0HKIwbtl2BpxQQCNcBGAsYHQ/w640-h218/cpufetch_10_exynos.png 4. Colors and styleBy default, cpufetchwill print the CPU art with the system colorscheme. However, you can always set a custom color scheme, either specifying Intel or AMD, or specifying the colors in RGB format: ./cpufetch --color intel (default color for Intel)
./cpufetch --color amd (default color for AND)
./cpufetch --color 239,90,45:210,200,200:100,200,45:0,200,200 (example) In the case of setting the colors using RGB, 4 colors must be given in with the format: [R,G,B:R,G,B:R,G,B:R,G,B]. These colors correspond to CPU art color (2 colors) and for the text colors (following 2). Thus, you can customize all the colors. 5. ImplementationSee cpufetch programming documentation. 6. Bugs or improvementsThere are many open issues in github (see issues). Feel free to open a new one report an issue or propose any improvement in cpufetchI would like to thank Gonzalocl and OdnetninI for their help, running cpufetchin many different CPUs they have access to, which makes it easier to debug and check the correctness of cpufetch. Download CpufetchDeep Web
Need some advice, Iβm new
Ok so Iβve a got a MacBook and Iβve just installed Tor, a virtual machine, Tails OS, a VPN, and an antivirus is there anything else Iβll need and do you have any solid advice for when browsing out there?
submitted by /u/TwinTVs
[link] [comments]
Need some advice, Iβm new
Ok so Iβve a got a MacBook and Iβve just installed Tor, a virtual machine, Tails OS, a VPN, and an antivirus is there anything else Iβll need and do you have any solid advice for when browsing out there?
submitted by /u/TwinTVs
[link] [comments]
reddit
Need some advice, Iβm new
Ok so Iβve a got a MacBook and Iβve just installed Tor, a virtual machine, Tails OS, a VPN, and an antivirus is there anything else Iβll need and...
A black-box penetration test (coursework) - please help me
https://www.reddit.com/r/Pentesting/comments/mp3aa4/a_blackbox_penetration_test_coursework_please/
<!-- SC_OFF -->I have an assignment which is a report on a penetration test that I have to complete, against a local victim virtual machine running red-hat Linux. The scope is limited to the ports open on the IP address, web-based services or any port running http/s is out of the scope. We also arent allowed to use brute force, dictionary or DoS methods. There are 4 open ports within the scope: 22 - OpenSSH, 111 - RpcBind, 3306 - MySQL (Unauthorised), 32768 - Status. I have attempted to use the methods we have been taught in our practical labs against the machine, but none of them have been successful. We have been told that there is enough OSINT in the "leaked" documents for us to have an initial point of entry but we can't find anything useful anywhere, this is surprising because we managed to guess the password weeks ago so we already know what to look for. Any help would be greatly appreciated, I'll find a way to incorporate you into my bibliography. <!-- SC_ON --> submitted by /u/-Cluck-Cluck- (https://www.reddit.com/user/-Cluck-Cluck-)
[link] (https://www.reddit.com/r/Pentesting/comments/mp3aa4/a_blackbox_penetration_test_coursework_please/) [comments] (https://www.reddit.com/r/Pentesting/comments/mp3aa4/a_blackbox_penetration_test_coursework_please/)
https://www.reddit.com/r/Pentesting/comments/mp3aa4/a_blackbox_penetration_test_coursework_please/
<!-- SC_OFF -->I have an assignment which is a report on a penetration test that I have to complete, against a local victim virtual machine running red-hat Linux. The scope is limited to the ports open on the IP address, web-based services or any port running http/s is out of the scope. We also arent allowed to use brute force, dictionary or DoS methods. There are 4 open ports within the scope: 22 - OpenSSH, 111 - RpcBind, 3306 - MySQL (Unauthorised), 32768 - Status. I have attempted to use the methods we have been taught in our practical labs against the machine, but none of them have been successful. We have been told that there is enough OSINT in the "leaked" documents for us to have an initial point of entry but we can't find anything useful anywhere, this is surprising because we managed to guess the password weeks ago so we already know what to look for. Any help would be greatly appreciated, I'll find a way to incorporate you into my bibliography. <!-- SC_ON --> submitted by /u/-Cluck-Cluck- (https://www.reddit.com/user/-Cluck-Cluck-)
[link] (https://www.reddit.com/r/Pentesting/comments/mp3aa4/a_blackbox_penetration_test_coursework_please/) [comments] (https://www.reddit.com/r/Pentesting/comments/mp3aa4/a_blackbox_penetration_test_coursework_please/)
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
I Need A Hacker To Help Me Change My Grades And GPA QULIOUSHACKER@GMAIL.COM
This will be the question presented to you when you need a school grade change. Being a student in the university, college, or high schoolβ¦
Continue reading on Medium Β»
β Sent by @TheFeedReaderBot β
I Need A Hacker To Help Me Change My Grades And GPA QULIOUSHACKER@GMAIL.COM
This will be the question presented to you when you need a school grade change. Being a student in the university, college, or high schoolβ¦
Continue reading on Medium Β»
β Sent by @TheFeedReaderBot β
Reflecting on the Five Years of Bug Bounty at Grab
https://medium.com/grab/reflecting-on-the-five-years-of-bug-bounty-at-grab-adf1df55eb80?source=rss------bug_bounty-5
https://medium.com/grab/reflecting-on-the-five-years-of-bug-bounty-at-grab-adf1df55eb80?source=rss------bug_bounty-5
By Ajay Srivastava, Aniket Kulkarni, Avinash Singh, Nathaniel CallensContinue reading on Grab Β» (https://medium.com/grab/reflecting-on-the-five-years-of-bug-bounty-at-grab-adf1df55eb80?source=rss------bug_bounty-5)
Reflecting on the Five Years of Bug Bounty at Grab
By Ajay Srivastava, Aniket Kulkarni, Avinash Singh, Nathaniel CallensContinue reading on Grab Β»
Read more...
By Ajay Srivastava, Aniket Kulkarni, Avinash Singh, Nathaniel CallensContinue reading on Grab Β»
Read more...
pentesting work station
https://www.reddit.com/r/Pentesting/comments/mp67yf/pentesting_work_station/
<!-- SC_OFF -->So was curious what you guys or gals consider essentials for a solid fast pentesting laptop. Do you prefer top notch specs, or certains aspects of hardware over others? what size screen do you prefer? <!-- SC_ON --> submitted by /u/Man_Chi1d (https://www.reddit.com/user/Man_Chi1d)
[link] (https://www.reddit.com/r/Pentesting/comments/mp67yf/pentesting_work_station/) [comments] (https://www.reddit.com/r/Pentesting/comments/mp67yf/pentesting_work_station/)
https://www.reddit.com/r/Pentesting/comments/mp67yf/pentesting_work_station/
<!-- SC_OFF -->So was curious what you guys or gals consider essentials for a solid fast pentesting laptop. Do you prefer top notch specs, or certains aspects of hardware over others? what size screen do you prefer? <!-- SC_ON --> submitted by /u/Man_Chi1d (https://www.reddit.com/user/Man_Chi1d)
[link] (https://www.reddit.com/r/Pentesting/comments/mp67yf/pentesting_work_station/) [comments] (https://www.reddit.com/r/Pentesting/comments/mp67yf/pentesting_work_station/)
Hacking Articles Tips Tricks Videos Tutorials
Photo
hacking: security in practice
what percentage of security professionals are most likely still grey hats and who is likely to be that person? What about for black hats?
So if someone is working as a job in cybersecurity, how likely are they to secretly be a grey hat hacker and what kind of person is still a grey hat hacker when they grow older? Do people in cybersecurity ever still tend to be black hat?
What would you recommend someone working in cybersecurity looks out for when it comes to other people who work at their organization?
This is not just about grey or black hats who target the organization they work for but in general.
https://www.itsecurityguru.org/2018/08/22/12-security-professionals-considered-black-hat-activity/
submitted by /u/notburneddown
[link] [comments]
what percentage of security professionals are most likely still grey hats and who is likely to be that person? What about for black hats?
So if someone is working as a job in cybersecurity, how likely are they to secretly be a grey hat hacker and what kind of person is still a grey hat hacker when they grow older? Do people in cybersecurity ever still tend to be black hat?
What would you recommend someone working in cybersecurity looks out for when it comes to other people who work at their organization?
This is not just about grey or black hats who target the organization they work for but in general.
https://www.itsecurityguru.org/2018/08/22/12-security-professionals-considered-black-hat-activity/
submitted by /u/notburneddown
[link] [comments]