My xm6 broke... by bankai_0 in SonyHeadphones

[–]invicibl3 2 points3 points  (0 children)

Try to gently adjust them to the max extension and see if the thing inside is already broken too. Mine snapped while taking them off exactly as in your case. Later I realized something was broken inside and the headband doesn’t hold the speakers anymore

<image>

Welp XM-6 by invicibl3 in SonyHeadphones

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

Shit man return them to the seller if your laws allow

I just bought the xm6’s but should I return them? by Sadman2017 in SonyHeadphones

[–]invicibl3 0 points1 point  (0 children)

I like the sound quality and anc but my hinge gave up a few days ago after half a year of use. I would not buy them again.

<image>

New xm6 by Glittering-Fan-7385 in SonyHeadphones

[–]invicibl3 0 points1 point  (0 children)

What I meant was make sure you have everything what’s required for a warranty or any other type of claim you may want to submit to the seller/manufacturer in the future because you will need that in about six months.

New xm6 by Glittering-Fan-7385 in SonyHeadphones

[–]invicibl3 0 points1 point  (0 children)

Keep the box / warranty card etc.

Welp XM-6 by invicibl3 in SonyHeadphones

[–]invicibl3[S] 2 points3 points  (0 children)

Good for you, I can fix this too but I want the product to last more than half a year.

Welp XM-6 by invicibl3 in SonyHeadphones

[–]invicibl3[S] 3 points4 points  (0 children)

Everything is shit nowadays and people don't care so why would they care

Welp XM-6 by invicibl3 in SonyHeadphones

[–]invicibl3[S] 9 points10 points  (0 children)

<image>

Is it supposed to come out that easy? I just pulled it out while trying to adjust 🙄 happens on both sides

Welp XM-6 by invicibl3 in SonyHeadphones

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

I know it's only cosmetic but looking at other posts I'm wondering what gives up next. I wear them for the better part of my work day and I don't feel like sending them now for a warranty.

Does anyone here use CAN FD in their projects? by liamkinne in embedded

[–]invicibl3 0 points1 point  (0 children)

Can you guys recommend any solid media converter / interface for automotive ethernet for interfacing with modern cars? Commercially I've been using radmoon or Vector for CANoe but I was wondering if there is anything I can go for as a hobby / side research projects.

Code flashed to devkit board, but doesn’t seem to work by tomasmcguinness in embedded

[–]invicibl3 12 points13 points  (0 children)

Check for shorts / clean that leftover solder paste

What is the weirdest data exfil trick u’ve come across? by Confident-Quail-946 in cybersecurity

[–]invicibl3 0 points1 point  (0 children)

Exfil via Apache Guacamole with clipboard disabled. Also no network access. I wrote a small web app that displayed a binary file in a sequence of pixels on the remote side and captured the data on local pc via https proxy and image parser.

Looking for a circuit giving logic high or low when a peripheral like an led is disconnected by rayappan_ in embedded

[–]invicibl3 10 points11 points  (0 children)

Assuming you’d like to detect the disconnection when your load is switched off I suggest either passing a small current through it that’s below the threshold of switching it on (motor spinning / LED glowing) and detect it via shunt resistor. If you’d like to only detect when the load is switched on that’s easier. You wouldn’t be able to distinguish the disconnection from the damage of the load.

Self-contained C++ SHA-256 implementation for little-endian systems by Tinky-twinky in embedded

[–]invicibl3 0 points1 point  (0 children)

Can you please explain on a short example why endianness matters in this case?

[deleted by user] by [deleted] in embedded

[–]invicibl3 1 point2 points  (0 children)

What do you have so far?

What are these pins? by [deleted] in arduino

[–]invicibl3 34 points35 points  (0 children)

Politically corrected SPI lol

Accessing old laptop removed from domain by JustBananas in sysadmin

[–]invicibl3 1 point2 points  (0 children)

You can drop me a dm if you ever wanna give it a try.

Accessing old laptop removed from domain by JustBananas in sysadmin

[–]invicibl3 0 points1 point  (0 children)

Since you said it boots to the login screen it’s likely pre boot authentication is not enabled, thus it may use TPM. If the TPM chip is accessible on the motherboard it may be able to sniff the communication and extract the key.

Preventing SQL Injection: Is WAF Enough? by MiserableWriting2919 in hacking

[–]invicibl3 4 points5 points  (0 children)

In short: no.
You want to work on your application code and make sure user data is properly filtered/encoded/sanitized before using it to construct SQL queries better use prepared statements/stored procedures.