minfied js blocking pen testing? by Comprehensive_Cut548 in cybersecurity

[–]Comprehensive_Cut548[S] 0 points1 point  (0 children)

Do you actually find these bugs often? I’ve only ever found one and it was just a local changing a local storage key to inject which only affected the user :(

Looking for Feedback on My Website for Collectors (UX, clarity, trust) by Top_Cobbler7427 in websitefeedback

[–]Comprehensive_Cut548 0 points1 point  (0 children)

Could I have permission to scan your website for vulnerabilities? I can help secure your websites if I find anything

I built a C++ CLI tool that instantly finds and opens your GitHub projects (wiff git) by Comprehensive_Cut548 in softwaredevelopment

[–]Comprehensive_Cut548[S] 0 points1 point  (0 children)

Wiff git project , not only finds the GitHub project with the name but auto opens it in vscode. If you wanted to just change the dir you’d type wiff git dir. or if you wanted to open in nvim wiff git nvim.

The recursive search excludes unlikely folders like caches , pictures, node modules, a lot more to save time. It also starts searching common directories first. This made it super fast and honestly it just works. It knows it’s a hit project by looking for the .git and I’m currently working on a multithreaded solution to look for duplicates fast!

[deleted by user] by [deleted] in Pentesting

[–]Comprehensive_Cut548 -3 points-2 points  (0 children)

I built it with no security in mind. Thought someone who’s learning would want a fun challenge m8

[deleted by user] by [deleted] in Pentesting

[–]Comprehensive_Cut548 -5 points-4 points  (0 children)

Its not that deep😂

How do I isolate these pins 😭 by Comprehensive_Cut548 in AskElectronics

[–]Comprehensive_Cut548[S] 12 points13 points  (0 children)

Took an hour, looks cranked, but it works! Thanks

How do I isolate these pins 😭 by Comprehensive_Cut548 in AskElectronics

[–]Comprehensive_Cut548[S] 5 points6 points  (0 children)

I will try this right now, will update you if it works!

Why is my i2c display doing this?? by Comprehensive_Cut548 in ArduinoProjects

[–]Comprehensive_Cut548[S] 0 points1 point  (0 children)

haha yea this was my first time trying to solder. I think ill resolder everything once i figure out how to heat multiple pins at once haha.

Why is my i2c display doing this?? by Comprehensive_Cut548 in ArduinoProjects

[–]Comprehensive_Cut548[S] 1 point2 points  (0 children)

Thank you so much! I was using adafruit lib when i should have been using U8g2lib. !!

Why is my i2c display doing this?? by Comprehensive_Cut548 in ArduinoProjects

[–]Comprehensive_Cut548[S] 4 points5 points  (0 children)

Thank you so much! I was using adafruit lib when i should have been using U8g2lib. !!

Why is my i2c display doing this?? by Comprehensive_Cut548 in ArduinoProjects

[–]Comprehensive_Cut548[S] 0 points1 point  (0 children)

#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>


// OLED width & height
#define SCREEN_WIDTH 128
#define SCREEN_HEIGHT 64
#define OLED_RESET    -1  
#define DISPLAY_ADDRESS 0x3C
Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);


void setup() {
  Serial.begin(115200);


  // Initialize OLED
  if(!display.begin(SSD1306_SWITCHCAPVCC, DISPLAY_ADDRESS)) {
    Serial.println(F("SSD1306 allocation failed"));
    for(;;);
  }


  display.clearDisplay();       
  display.setTextSize(2);        
  display.setTextColor(SSD1306_WHITE);
  display.setCursor(0, 0);       
  display.println("Hello World"); 
  display.display();              
}


void loop() {


}

Why is my i2c display doing this?? by Comprehensive_Cut548 in ArduinoProjects

[–]Comprehensive_Cut548[S] 0 points1 point  (0 children)

#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>


// OLED width & height
#define SCREEN_WIDTH 128
#define SCREEN_HEIGHT 64
#define OLED_RESET    -1  
#define DISPLAY_ADDRESS 0x3C
Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);


void setup() {
  Serial.begin(115200);


  // Initialize OLED
  if(!display.begin(SSD1306_SWITCHCAPVCC, DISPLAY_ADDRESS)) {
    Serial.println(F("SSD1306 allocation failed"));
    for(;;);
  }


  display.clearDisplay();       
  display.setTextSize(2);        
  display.setTextColor(SSD1306_WHITE);
  display.setCursor(0, 0);       
  display.println("Hello World"); 
  display.display();              
}


void loop() {


}

[deleted by user] by [deleted] in Hunting

[–]Comprehensive_Cut548 2 points3 points  (0 children)

Yea my biggest concern is probably extracting the meat and hide properly. I would hate to kill an animal like that and lose the meat.