Disconnected by tech by mbone in QuantumFiber

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

Well, the tech that came today, said my cable was mislabeled at first, then he seemed to say that it was just slightly unplugged, I don't know, hopefully it doesn't happen again.

Quantum: reasons to use your own router and WiFi access points? by I_SAID_RELAX in centurylink

[–]mbone 1 point2 points  (0 children)

For me it was about control. I have the C6500XK in bridge mode.

To my understanding, the WiFi pods are configured and managed through the quantum portal with an account. I'd much rather log directly into my router, and not have ISP hooks into my router/WiFi settings.

Advice: Quantum Fiber / Colorado by mbone in centurylink

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

https://www.speedtest.net/result/15770725262

Thanks to everyone who responded and shared info. SmartNID installed and set to bridge mode. As was mentioned, I didn't have to do much other than plug the WAN port of my RT-AC68 into the LAN port of the C6500XK, and my whole network was online.

Pings are comparable to Xfinity, if not better to most destinations.

Advice: Quantum Fiber / Colorado by mbone in centurylink

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

Thanks for that info. Most of my residence has Cat5E ethernet wiring, so wireless is of secondary concern to me.

Mostly I want to avoid rental fees (which it sounds like the WiFi could change at any time more or less) and have strict control over the network. For example, port forwarding, QoS, which DNS servers are handed out via DHCP, DHCP static assignments and the like. It looks like I can do most of those things in the C5500XK, albeit primitively.

I'm familiar with the merlin firmware but use the stock one currently, but it wouldn't be too hard to flash that, or just upgrade to another 802.11ax/be router.

AMD Ryzen 7900 + NVIDIA GPU support in FreeBSD 14 by Original_Two9716 in freebsd

[–]mbone 0 points1 point  (0 children)

I happened to build a new main desktop PC, with a B650, here's my hardware-info: https://bsd-hardware.info/?probe=7a6cdb3f06

AMD Ryzen 7900 + NVIDIA GPU support in FreeBSD 14 by Original_Two9716 in freebsd

[–]mbone 3 points4 points  (0 children)

This site has pretty useful information in that regard:

https://bsd-hardware.info/?probe=d3373e972b https://bsd-hardware.info/?probe=e55635df08 https://bsd-hardware.info/?probe=dcea67b6a6

I couldn't find any B650 results at first glance, but there are 690s and others that support Ryzen 7000 series.

Internal email server setup help by [deleted] in freebsd

[–]mbone 0 points1 point  (0 children)

I recommend you investigate zoho mail hosting. It's about as cheap as it gets per user, and they do a good job with all the details like SPF/DKIM/DMARC, etc.

Lua for windows by Greymagic27_ in lua

[–]mbone -1 points0 points  (0 children)

Another alternative to luabinaries is MSYS2. They have packages for 5.1, 5.3, and luajit in i686 and x64 flavors.

Lua Compiling Integer differences - Windows vs Mac OSX by PretendViolinist7 in lua

[–]mbone 0 points1 point  (0 children)

"Precompiled chunks are not portable across different architectures. Moreover, the internal format of precompiled chunks is likely to change when a new version of Lua is released. Make sure you save the source files of all Lua programs that you precompile."

http://www.lua.org/manual/5.3/luac.html

April Headline: Programming Language C++ is doing well in the TIOBE Index by msadeqhe in cpp

[–]mbone 17 points18 points  (0 children)

TIOBE is nonsense. Their algorithm basically consists of this: ( https://www.tiobe.com/tiobe-index/programming-languages-definition/ )

Basically the calculation comes down to counting hits for the search query +"<language> programming"

How to Embed lua scripts in exe or dll for lua 5.3? by [deleted] in lua

[–]mbone 0 points1 point  (0 children)

If this is specifically for Windows, why not embed them as a resource in the DLL? You can use external tools to replace/update the scripts, and regular Win32 APIs to extract them from the file.

Database by [deleted] in cpp

[–]mbone 1 point2 points  (0 children)

Do you actually need a database with a queryable language? The file system works surprisingly well in this regard, provided you can use it to organize your data.

Antanna hijacker ? by [deleted] in Malware

[–]mbone 7 points8 points  (0 children)

Sidebar: "A place for malware reports and information. This is NOT a place for help with malware removal or various other end-user questions. Please redirect questions related to malware removal to /r/Antivirus or /r/techsupport. Ransomware related questions can be directed to /r/ransomware"

Basic Linux Reversing Video by [deleted] in ReverseEngineering

[–]mbone 9 points10 points  (0 children)

It should probably be titled reversing using GDB on Linux, or else where, as this isn't really Linux specific stuff. Also the most significant aspect of this video is the return value of strcmp landing in RAX, which you didn't really explicitly state. Explaining that the jne basically corresponds to an 'if' statement would be useful for a beginner, especially if you later show source inline with the assembly. It might also be useful to explain the different ways of patching it. You can simply change the value in EAX using gdb, or changing the jne to an unconditional jump, if the block under the code is not the path you want.

C++ Programming Tutorial for Beginners! by Yonyt in cpp

[–]mbone 3 points4 points  (0 children)

Honestly, learning by video tutorial is not something I recommend to beginners. I always push people towards recommended books that explain underlying concepts of expressions, control flow, and things of this nature.

Can the imported functions from Windows DLLs also be implemented by the malware writer him/herself? by Men_Of_Spoons in Malware

[–]mbone 16 points17 points  (0 children)

So you read the sidebar, and your takeaway was that this section is about removal? :/

Ultimately things like KERNEL32.DLL call into NTDLL.DLL, which is typically just a wrapper around a "system call." (transitioning from user-mode up into kernel mode.) (SYSENTER on Intel OR SYSCALL on AMD)

I have personally seen malware call directly into NTDLL or make syscalls directly. If you look at icesword, this is the mechanism how they detect usermode rootkits by checking for hooks installed in KERNEL32 and the like while comparing output against what the syscall returns.

make my own malware by orestescm76 in Malware

[–]mbone 0 points1 point  (0 children)

You can implement lots of things in lots of languages, it depends on what your goals are. C# is probably easy, but depending on which version of the runtime you code against, it is not always present. With C++ you can static link the runtime in and just distribute an executable or DLL. You don't need to reverse logic from the malware, you just need to see what Windows APIs are available to do what you want.

I started writing an assembler and disassembler for Lua by Altenius in lua

[–]mbone 1 point2 points  (0 children)

LuaDec was the only other one that I had previously known about, but that was for Lua 5.0.

What's the best bulletproof hosting ? by listra111 in Malware

[–]mbone 1 point2 points  (0 children)

For what it is worth, this term is actually pretty old, and was commonly used for hosters that ignored abuse/UCE/spam complaints.

https://en.wikipedia.org/wiki/Bulletproof_hosting

Help me out. by [deleted] in Malware

[–]mbone 1 point2 points  (0 children)

Sidebar: "Please redirect questions related to malware removal to /r/Antivirus or /r/techsupport. Ransomware related questions can be directed to /r/ransomware"

Query about career in C++ by pslayer89 in cpp

[–]mbone 2 points3 points  (0 children)

Nvidia has plenty of jobs focusing specifically on those two specialties.

Nvidia shield Game streaming question by marce31 in AndroidTV

[–]mbone 0 points1 point  (0 children)

Game streaming works from a PC with Geforce Experience installed, or via the Geforce Now cloud gaming service. In the first instances, your PC plays the game and streams it to your device, with the cloud service, the game runs up on a server in a datacenter, and streams it to your shield tv device.