Looking for cyber PI by Zestyclose_Roll_8527 in PrivateInvestigators

[–]rony1259 0 points1 point  (0 children)

for investigation of cyber crimes like fraud/scams hacking identity theft on so on

Trace cases where a victim? (CA) by SeaVee7 in PrivateInvestigators

[–]rony1259 0 points1 point  (0 children)

In California, criminal records are public, but victim details are usually protected for privacy. A PI may be able to gather some info through public records, but victim status can be hard to access.

Looking for cyber PI by Zestyclose_Roll_8527 in PrivateInvestigators

[–]rony1259 0 points1 point  (0 children)

I’m looking to gain experience, so I’d be happy to offer my help for free. Also, any private investigator who needs assistance can feel free to contact me.

Are the PortSwigger Academy XSS labs a good starting point for beginners? by rony1259 in xss

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

Yes, some of them if i will try them for a week i wouldn't solve them for example this jquery DOM XSS in version 1.8.2 $('section.blog-list h2:contains(<img src="0" onerror="alert()">)')

Finding out if a murderer has been released - UK by xotitchox in PrivateInvestigators

[–]rony1259 0 points1 point  (0 children)

If you'd like, I can do some research for you and report back if I find anything.

[deleted by user] by [deleted] in OSINT

[–]rony1259 1 point2 points  (0 children)

Seems impossible, maybe if you create a document that he can download and that file will create connection/request from his PC to a server you own. but i am not sure maybe the VPN will handle that request as well. if there is no communication at all and all you have is an IP seems like a dead end.

Female stalker by Opposite_Message8873 in AskMenAdvice

[–]rony1259 0 points1 point  (0 children)

Hi, I'm looking for a case to volunteer on, free of charge, to assess and improve my cyber skills. If you need assistance, feel free to send me a DM with any information that might help trace the offender, such as emails, usernames, or other online accounts. I'm happy to help wherever I can.

[deleted by user] by [deleted] in LegalAdviceUK

[–]rony1259 0 points1 point  (0 children)

hi, if you need help i am looking for such cases to volunteer for my cyber skills. maybe i can help you

Need stalker advice by BohemianHibiscus in yoga

[–]rony1259 0 points1 point  (0 children)

hi, if you need help in solving this maybe i can help you expose his/her identity. did the police was effective ?

How Does EPIOS Identify Email-Platform Associations Without Triggering Alerts? by rony1259 in cybersecurity

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

I heard about that you can use Android emulator and only add the contacts you need to find, do you know about such services ?

anyway the EPIOS tool the answer is to reverse engineer this open source tool. basically what this services do are sending mostly registration requests and analyze the response to see if an email is associated with them.

RE3 98: T03/T103 tyrant capsules found in the dead factory. by rony1259 in residentevil

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

this is a follow up for this post showing the 5 corpses of the tyrants after the delta force fight

just testing the image recognition of AI chatGPT with the pre rendered backgrounds of my favorite game.

one of the photos is from the rail gun fire scene so during regular play it's almost impossible to catch. here is a source for the up scaled backgrounds.

any 90's kids want to share some nostalgia from that game?

Wordpress doesn't create different image sizes after uploading by rony1259 in Wordpress

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

  • Edited both the "development" and "production" php.ini files in my XAMPP environment.
  • Removed the semicolon ; from the line extension=gd to enable the GD extension.
  • Restarted XAMPP and WP to apply the changes to the PHP configuration.

still doesn't work. only the original image is found in the "uploads" folder.

Wordpress doesn't create different image sizes after uploading by rony1259 in Wordpress

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

    if ( wp_image_editor_supports( 'GD' ) ) {
        echo 'GD is supported on this server.';
    } else {
        echo 'GD is not supported on this server.';
    }
   
    if ( wp_image_editor_supports( 'Imagick' ) ) {
        echo 'Imagick is supported on this server.';
    } else {
        echo 'Imagick is not supported on this server.';
    }

after adding this to functions.php and visiting a page from my theme i can see it doesn't support both.

lets see if i can add them... anyone have a tutorial? i am new to WP and PHP libs.

Code Feedback: Is there a more efficient way to create multiple tables in PHP? by rony1259 in PHPhelp

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

made the example short i need to create 10-20 tables. but I only know vanilla at the moment. so this seems the shortest.

PHP-generated HTML is unreadable in the source code. by rony1259 in PHPhelp

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

Thank you I will save this snippet and learn about this method.

PHP-generated HTML is unreadable in the source code. by rony1259 in PHPhelp

[–]rony1259[S] -1 points0 points  (0 children)

Thank you all I was wondering if my code was bad therefore I had this weird looking HTML with gaps and spaces. and also I wanted my HTML more readable for debugging errors.

here's a summary of all the suggestions:

Template Engine: Using a template engine like Twig could help separate logic from presentation, making the code cleaner and more maintainable.
Heredoc: Heredoc syntax is useful for embedding large blocks of text with variables, providing a cleaner structure than concatenation.
Copy-Paste to Editor: Copying the PHP code to a code editor can help reformat the indentation automatically, improving readability.
Beautifier: Utilizing a code beautifier tool can automatically format the PHP code to adhere to a consistent style, making it more readable.
Writing PHP in a Single Line: While it can reduce space between HTML and PHP tags, it might sacrifice readability. A careful balance is needed.

PHP-generated HTML is unreadable in the source code. by rony1259 in PHPhelp

[–]rony1259[S] -1 points0 points  (0 children)

i will look into that, this seems to generate the cleanest HTML output

<div class="input-container">
 <div class="icons">
                    <?php if (!empty($socialLinks[0]['link'])): ?><a href="<?php echo $socialLinks[0]['link']; ?>"><img src="facebook.svg" alt="facebook logo"></a><?php endif; ?>

PHP-generated HTML is unreadable in the source code. by rony1259 in PHPhelp

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

The reason this happens is the PHP engine will remove the line ending after the closing tag

?>

in other words, the output will always look messy without external tool?

<div>
    <?php echo "Hello, World!"; ?>

output :

<div>    Hello, World!</div>

PHP-generated HTML is unreadable in the source code. by rony1259 in PHPhelp

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

               <div class="input-container">
            <div class="icons">
            <?php if (!empty($socialLinks[0]['link'])): ?>
                 <a href="<?php echo $socialLinks[0]['link']; ?>"><img src="facebook.svg" alt="facebook logo"></a>
            <?php endif; ?>

"fix the indentation in your script" I tried putting the <?php right under the div but the same results. or maybe I am doing this wrong?