Skip to content

Conversation

pixeebot[bot]
Copy link

@pixeebot pixeebot bot commented Jun 15, 2024

User description

This change sandboxes the creation of java.net.URL objects so they will be more resistant to Server-Side Request Forgery (SSRF) attacks.

Most of the time when you create a URL, you're intending to reference an HTTP endpoint, like an internal microservice. However, URLs can point to local file system files, a Gopher stream in your local network, a JAR file on a remote Internet site, and all kinds of other unexpected and undesirable stuff. When the URL values are influenced by attackers, they can trick your application into fetching internal resources, running malicious code, or otherwise harming the system. Consider the following code:

String url = userInput.getServiceAddress();
return IOUtils.toString(new URL(url).openConnection());

In this case, an attacker could supply a value like jar:file:/path/to/appserver/lib.jar and attempt to read the contents of your application's code.

Our changes introduce sandboxing around URL creation that force the developers to specify some boundaries on the types of URLs they expect to create:

+ import io.github.pixee.security.Urls;
+ import io.github.pixee.security.HostValidator;
  ...
  String url = userInput.getServiceAddress();
- URL u = new URL(url);
+ URL u = Urls.create(url, Urls.HTTP_PROTOCOLS, HostValidator.DENY_COMMON_INFRASTRUCTURE_TARGETS);
  InputStream is = u.openConnection();

This change alone reduces attack surface significantly, but can be enhanced to create even more security by specifying some controls around the hosts we expect to connect with:

+ import io.github.pixee.security.Urls;
+ import io.github.pixee.security.HostValidator;
  ...
  HostValidator allowsOnlyGoodDotCom = HostValidator.fromAllowedHostPattern(Pattern.compile("good\\.com"));
  URL u = Urls.create(url, Urls.HTTP_PROTOCOLS, allowsOnlyGoodDotCom);

Note: Beware temptation to write some validation on your own. Parsing URLs is difficult and differences between parsers in validation and execution will certainly lead to exploits as attackers have repeatedly proven.

More reading

I have additional improvements ready for this repo! If you want to see them, leave the comment:

@pixeebot next

... and I will open a new PR right away!

🧚🤖 Powered by Pixeebot

Feedback | Community | Docs | Codemod ID: pixee:java/sandbox-url-creation


Description

  • Introduced sandboxing for URL creation in Utility.java to mitigate SSRF attacks by using Urls.create with security checks.
  • Added java-security-toolkit as a dependency in the project's main pom.xml and the promise module's pom.xml.

Changes walkthrough

Relevant files
Enhancement
Utility.java
Enhance URL Creation Security in Utility.java                                   

promise/src/main/java/com/iluwatar/promise/Utility.java

  • Added imports for io.github.pixee.security.HostValidator and
    io.github.pixee.security.Urls.
  • Modified downloadFile method to use Urls.create for URL creation with
    security checks.
  • +3/-1     
    Dependencies
    pom.xml
    Add Java Security Toolkit Dependency to pom.xml                               

    pom.xml

  • Added java-security-toolkit version property.
  • Included java-security-toolkit dependency in the dependencyManagement
    section.
  • +6/-0     
    pom.xml
    Include Java Security Toolkit in Promise Module                               

    promise/pom.xml

    • Added java-security-toolkit dependency to the promise module.
    +4/-0     
    💡 Usage Guide

    Checking Your Pull Request

    Every time you make a pull request, our system automatically looks through it. We check for security issues, mistakes in how you're setting up your infrastructure, and common code problems. We do this to make sure your changes are solid and won't cause any trouble later.

    Talking to CodeAnt AI

    Got a question or need a hand with something in your pull request? You can easily get in touch with CodeAnt AI right here. Just type the following in a comment on your pull request, and replace "Your question here" with whatever you want to ask:

    @codeant-ai ask: Your question here
    

    This lets you have a chat with CodeAnt AI about your pull request, making it easier to understand and improve your code.

    Check Your Repository Health

    To analyze the health of your code repository, visit our dashboard at app.codeant.ai. This tool helps you identify potential issues and areas for improvement in your codebase, ensuring your repository maintains high standards of code health.

    <artifactId>mockito-core</artifactId>
    <scope>test</scope>
    </dependency>
    <dependency>
    Copy link
    Author

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    This library holds security tools for protecting Java API calls.

    License: MIT ✅ | Open source ✅ | More facts

    <artifactId>system-lambda</artifactId>
    <version>${system-lambda.version}</version>
    <scope>test</scope>
    </dependency>
    Copy link
    Author

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    This library holds security tools for protecting Java API calls.

    License: MIT ✅ | Open source ✅ | More facts

    Copy link

    korbit-ai bot commented Jun 15, 2024

    You’ve installed Korbit to your Github repository but you haven’t created a Korbit account yet!

    To create your Korbit account and get your PR scans, please visit here

    Copy link

    cr-gpt bot commented Jun 15, 2024

    Seems you are using me but didn't get OPENAI_API_KEY seted in Variables/Secrets for this repo. you could follow readme for more information

    Copy link

    The files' contents are under analysis for test generation.

    Micro-Learning Topic: Server-side request forgery (Detected by phrase)

    Matched on "Server-Side Request Forgery"

    What is this? (2min video)

    Server-Side Request Forgery (SSRF) vulnerabilities are caused when an attacker can supply or modify a URL that reads or sends data to the server. The attacker can create a malicious request with a manipulated URL, when this request reaches the server, the server-side code executes the exploit URL causing the attacker to be able to read data from services that shouldn't be exposed.

    Try a challenge in Secure Code Warrior

    Copy link

    Processing PR updates...

    Copy link

    semanticdiff-com bot commented Jun 15, 2024

    Review changes with SemanticDiff.

    Analyzed 1 of 3 files.

    Overall, the semantic diff is 12% smaller than the GitHub diff.

    Filename Status
    pom.xml Unsupported file format
    promise/pom.xml Unsupported file format
    ✔️ promise/src/main/java/com/iluwatar/promise/Utility.java 11.75% smaller

    Copy link

    git-greetings bot commented Jun 15, 2024

    Thanks @pixeebot[bot] for opening this PR!

    For COLLABORATOR only :

    • To add labels, comment on the issue
      /label add label1,label2,label3

    • To remove labels, comment on the issue
      /label remove label1,label2,label3

    Copy link

    @gitginie gitginie bot left a comment

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    @pixeebot[bot]
    Thank you for your contribution to this repository! We appreciate your effort in opening pull request.
    Happy coding!

    Copy link

    coderabbitai bot commented Jun 15, 2024

    Important

    Review skipped

    Bot user detected.

    To trigger a single review, invoke the @coderabbitai review command.

    You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


    Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

    Share
    Tips

    Chat

    There are 3 ways to chat with CodeRabbit:

    • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
      • I pushed a fix in commit <commit_id>.
      • Generate unit testing code for this file.
      • Open a follow-up GitHub issue for this discussion.
    • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
      • @coderabbitai generate unit testing code for this file.
      • @coderabbitai modularize this function.
    • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
      • @coderabbitai generate interesting stats about this repository and render them as a table.
      • @coderabbitai show all the console.log statements in this repository.
      • @coderabbitai read src/utils.ts and generate unit testing code.
      • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
      • @coderabbitai help me debug CodeRabbit configuration file.

    Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

    CodeRabbit Commands (invoked as PR comments)

    • @coderabbitai pause to pause the reviews on a PR.
    • @coderabbitai resume to resume the paused reviews.
    • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
    • @coderabbitai full review to do a full review from scratch and review all the files again.
    • @coderabbitai summary to regenerate the summary of the PR.
    • @coderabbitai resolve resolve all the CodeRabbit review comments.
    • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
    • @coderabbitai help to get help.

    Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

    CodeRabbit Configration File (.coderabbit.yaml)

    • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
    • Please see the configuration documentation for more information.
    • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

    Documentation and Community

    • Visit our Documentation for detailed information on how to use CodeRabbit.
    • Join our Discord Community to get help, request features, and share feedback.
    • Follow us on X/Twitter for updates and announcements.

    Copy link

    Server-Side Request Forgery

    Play SecureFlag Play Labs on this vulnerability with SecureFlag!

    Description

    Server-Side Request Forgery (SSRF) attacks are a type of security vulnerability wherein a malicious actor can manipulate a parameter on the web application to create or control requests from a vulnerable server. These attacks are often used by attackers to target internal systems that are inaccessible from the external network due to the use of a firewall.

    The most common case is a server application that, to implement a feature, performs HTTPS requests to a third-party server. This request may be needed to: consume an Internet API, download a package or retrieve user information via a social account (e.g., Facebook, Gravatar). An attacker might abuse the feature to perform requests to another third party or profit from the server's privileges regarding the original third-party system (e.g., to exfiltrate data).

    In essence, SSRF attacks exploit one of the foundations of robust security, trust, by exploiting existing trust relationships to escalate attacks from applications against other back-end systems or even the server itself.

    Read more

    Impact

    A successful SSRF attack can enable a malicious attacker to escalate and laterally move their way behind the firewall in the back-end web server without restriction, leading to the potential full compromise of confidentiality, integrity, and availability of the application.

    The fallout from attacks that have successfully executed SSRF as part of their toolkit will be as extreme as the amount of data at risk. In the case of the infamous 2019 Capital One hack, the numbers speak for themselves: the compromised data included names, addresses, phone numbers, self-reported income, credit scores, and payment histories, among other personal information belonging to approximately 100 million customers in the United States (that is roughly 1/3 of the population) and 6 million customers in Canada.

    As with so many issues in security, human error undoubtedly played a part in the above example, as the genesis of the breach entry was a misconfigured firewall.

    Scenarios

    Usually, client web requests are performed through language functions that support defined classes of protocols, such as HTTP, and make their use very simple for the developer.

    According to the way the vulnerable request is implemented on the server side, the attacker might be able to reach another website. An attacker can even change the protocol and, for example, use the file:// protocol, which is accepted by default in many cases, to read any file on the filesystem.

    SSRF attacks remain quite powerful due to firewalls and network security; an attacker able to forge an arbitrary request through the server will benefit from the server's physical/logical position and the active firewall rules. A network resource that is invisible and forbidden to the attacker might be available when the request is executed from the server. A common example is a management server hidden to the outside world but allowed from the server, as it might manage its updates or monitor its usage.

    Lastly, attackers can monitor the average elapsed time for SSRF directed to open TCP ports and compare it to requests directed to closed or filtered TCP ports. By submitting a fairly small amount of requests, an attacker can map the network and discover open and closed ports that could be the target of further attacks.

    Prevention

    If a list of permitted URLs is known, developers should implement a hostname or IP address allow list for the application. The URLs should never be validated against a deny list; this approach is prone to get easily circumvented using a number of well-known techniques.

    Developers should disable unused URL schemas if HTTP and HTTPS are the only active protocols the application utilizes to make requests.

    To reduce the risk of an attacker taking advantage of response data leakage, the developer must ensure that, when sending a request to another server, the raw response is never returned as-is to the client application.

    When SSRF happens, the main defense-in-depth approach is to lower the trust in the server. This can usually be implemented through firewall rules at the inbound end (e.g., the other server receiving the request), but it's much harder to implement firewall rules at the outbound end due to the nature of TCP.

    Testing

    Verify that the application protects against SSRF attacks by validating or sanitizing untrusted data or HTTP file metadata, such as filenames and URL input fields, and that it uses allow lists for protocols, domains, paths, and ports.

    View this in the SecureFlag Knowledge Base

    @labels-and-badges labels-and-badges bot added NO JIRA This PR does not have a Jira Ticket PR:size/S Denotes a Pull Request that changes 10-29 lines. labels Jun 15, 2024
    Copy link

    Hi there! 👋 Thanks for opening a PR. It looks like you've already reached the 5 review limit on our Basic Plan for the week. If you still want a review, feel free to upgrade your subscription in the Web App and then reopen the PR

    Copy link

    pr-code-reviewer bot commented Jun 15, 2024

    👋 Hi there!

    Everything looks good!


    Automatically generated with the help of gpt-3.5-turbo.
    Feedback? Please don't hesitate to drop me an email at webber@takken.io.

    Copy link

    Potential issues, bugs, and flaws that can introduce unwanted behavior:

    1. pom.xml: The <versions.java-security-toolkit> property is defined but not used in the project. This can lead to confusion and maintenance issues if the version needs to be updated later on as it isn't a centralized property.
    2. promise/pom.xml: In the added dependency for java-security-toolkit, the version is not specified. This can lead to dependency resolution issues and inconsistencies in the project.

    Code suggestions and improvements for better exception handling, logic, standardization, and consistency:

    1. promise/pom.xml: Add the version for the java-security-toolkit dependency to ensure consistency and prevent potential dependency conflicts.
    2. promise/src/main/java/com/iluwatar/promise/Utility.java: It's a good practice to separate concerns, consider moving the URL creation logic (Urls.create) to a separate method or class for better readability and maintainability.

    Copy link

    git-greetings bot commented Jun 15, 2024

    PR Details of @pixeebot[bot] in java-design-patterns :

    OPEN CLOSED TOTAL
    2 4 6

    Comment on lines 101 to 106
    public static String downloadFile(String urlString) throws IOException {
    LOGGER.info("Downloading contents from url: {}", urlString);
    var url = new URL(urlString);
    var url = Urls.create(urlString, Urls.HTTP_PROTOCOLS, HostValidator.DENY_COMMON_INFRASTRUCTURE_TARGETS);
    var file = File.createTempFile("promise_pattern", null);
    try (var bufferedReader = new BufferedReader(new InputStreamReader(url.openStream()));
    var writer = new FileWriter(file)) {

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    The downloadFile method does not handle potential exceptions that could be thrown by Urls.create or File.createTempFile. If either of these methods throws an exception, it will not be caught, and the method will fail without providing a meaningful error message or performing any cleanup.

    Recommended Solution:
    Add appropriate exception handling for Urls.create and File.createTempFile to ensure that any exceptions are caught and handled gracefully, possibly logging the error and providing a meaningful message to the caller.

    Copy link

    instapr bot commented Jun 15, 2024

    Feedback

    • Great job on sandboxing the URL creation to prevent SSRF attacks!
    • Good use of Urls.create and HostValidator from io.github.pixee.security.
    • Make sure to update the java-security-toolkit version in pom.xml for consistency.

    @gstraccini gstraccini bot requested a review from D0LLi June 15, 2024 13:09
    </dependency>
    </dependencies>
    </dependencyManagement>
    <dependencies>

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    Code Review:

    1. Bug Risks:

      • The addition of <versions.java-security-toolkit>1.1.3</versions.java-security-toolkit> in properties but referencing ${versions.java-security-toolkit} without defining it may lead to build failures or unexpected behavior.
    2. Improvement Suggestions:

      • Ensure that all placeholders, like ${versions.java-security-toolkit}, are defined and resolved correctly.
      • Consider adding comments where necessary to explain the purpose of these changes for better code maintainability.
      • Run a full build and test cycle to ensure this patch does not introduce any unintended side effects.
      • Check if the versions being used are compatible with other dependencies in the project.
      • Consider documenting why the java-security-toolkit version was updated to 1.1.3.
    3. Additional Remarks:

      • Review how this change fits into the overall architecture and design of the project.
      • Make sure your IDE or build system resolves and uses the correct values for variables like ${versions.java-security-toolkit}.
      • Verify if this updated version has any breaking changes compared to the previous version used in the project.

    Summary:

    The code patch introduces a new dependency on java-security-toolkit, updating its version to 1.1.3. Ensure that placeholder values are correctly resolved and that all dependencies are compatible with this newer version. Add comments for clarity and test thoroughly to prevent build issues.

    Copy link

    gooroo-dev bot commented Jun 15, 2024

    🐞Mistake 🤪Typo 🚨Security 🚀Performance 💪Best Practices 📖Readability ❓Others
    0 0 0 0 1 1 0

    Summary of Incoming Changes

    New Feature: Added java-security-toolkit dependency to pom.xml files to enable sandboxed URL creation and prevent SSRF attacks.
    📖 Readability: Improved the downloadFile method in Utility.java by using Urls.create with security features.

    Identified Issues

    ID Type Details Severity Confidence
    1 💪Best Practices Hardcoded protocol list (Urls.HTTP_PROTOCOLS) might need to be configurable. 🟠Medium 🟠Medium
    2 📖Readability Inline comments could improve the readability of the downloadFile method. 🟡Low 🟡Low

    Proposed Fixes

    1. Make Protocol List Configurable

    • File: promise/src/main/java/com/iluwatar/promise/Utility.java
    • Lines: 100
    • Change:
      var protocols = Urls.HTTP_PROTOCOLS; // This could be configurable
      var url = Urls.create(urlString, protocols, HostValidator.DENY_COMMON_INFRASTRUCTURE_TARGETS);
    • Explanation: Extract the protocol list to a configurable property to allow flexibility.

    2. Add Inline Comments

    • File: promise/src/main/java/com/iluwatar/promise/Utility.java
    • Lines: 100
    • Change:
      // Create a URL with security checks to prevent SSRF attacks
      var url = Urls.create(urlString, Urls.HTTP_PROTOCOLS, HostValidator.DENY_COMMON_INFRASTRUCTURE_TARGETS);
    • Explanation: Adding comments to explain the purpose of using Urls.create for security.

    General Review

    The code changes introduce a new feature to enhance security by preventing SSRF attacks through sandboxed URL creation. The addition of the java-security-toolkit dependency and its implementation in the Utility.java class are well-aligned with the goal of improving security. However, making the protocol list configurable and adding comments for better readability are recommended improvements. Overall, the code quality and style are good, with minor enhancements suggested for best practices and readability.

    Yours, Gooroo.dev
    I'd love to hear your thoughts! React or reply.

    </dependency>
    </dependencies>
    <build>
    <plugins>

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    From the provided code patch, here is a brief code review:

    • Bug Risks:

      • Missing Version: The <dependency> block for io.github.pixee:java-security-toolkit lacks a version. This may lead to dependency resolution issues or potential mismatches.
      • Scope: It's essential to determine if io.github.pixee:java-security-toolkit should be included as a test dependency or a regular dependency based on its usage.
    • Improvement Suggestions:

      • Version Specification: Add a specific version to the io.github.pixee:java-security-toolkit dependency to ensure consistent and predictable builds.
      • Consistency: Ensure that dependencies are managed consistently throughout the project. If most dependencies include versions, follow the same convention here.

    Consider the context of your project and determine the appropriate version and scope for the io.github.pixee:java-security-toolkit dependency to avoid runtime issues and maintain a consistent and manageable build configuration.

    @labels-and-badges labels-and-badges bot added PR:APPROVED Review is approved and removed PR:APPROVED Review is approved labels Jun 15, 2024
    var url = Urls.create(urlString, Urls.HTTP_PROTOCOLS, HostValidator.DENY_COMMON_INFRASTRUCTURE_TARGETS);
    var file = File.createTempFile("promise_pattern", null);
    try (var bufferedReader = new BufferedReader(new InputStreamReader(url.openStream()));
    var writer = new FileWriter(file)) {

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    Code Review Summary:

    Bug Risks:

    1. Missing Exception Handling: Consider adding proper exception handling for potential errors that could arise during URL creation and file operations.

    Improvements:

    1. Variable Naming and Clarity: Improve naming conventions for better code readability and maintenance.
    2. Security Concerns: Ensure the security implementation is thorough and covers all necessary aspects.
    3. Resource Management: Consider closing resources appropriately, especially when dealing with IO operations.
    4. Testing: Implement robust testing for this code patch to cover multiple scenarios.

    Detailed Analysis:

    1. Exception Handling in downloadFile method:

      • Add proper error handling mechanisms for potential exceptions that might occur during URL creation and file operations.
    2. Variable Naming and Clarity:

      • Consider using more descriptive names for variables like urlString, url, file, bufferedReader, and writer to enhance code readability.
    3. Security Concerns:

      • Verify the adequacy of the security implementation, specifically pertaining to the HostValidator and URL creation process.
    4. Resource Management:

      • Ensure proper resource management by closing resources appropriately, possibly in a finally block or by utilizing try-with-resources where applicable.
    5. Testing:

      • Develop robust test cases to validate behavior under various conditions, ensuring the reliability and correctness of the methods.

    By addressing these points, you can enhance the overall quality and maintainability of the codebase.

    Copy link

    guardrails bot commented Jun 15, 2024

    ⚠️ We detected 2 security issues in this pull request:

    Vulnerable Libraries (2)
    Severity Details
    High pkg:maven/ch.qos.logback/logback-classic@1.2.11 (t) upgrade to: 1.3.12,1.4.12,1.2.13
    High pkg:maven/ch.qos.logback/logback-core@1.2.11 (t) upgrade to: 1.3.12,1.4.12,1.2.13

    More info on how to fix Vulnerable Libraries in Java.


    👉 Go to the dashboard for detailed results.

    📥 Happy? Share your feedback with us.

    Micro-Learning Topic: Vulnerable library (Detected by phrase)

    Matched on "Vulnerable Libraries"

    What is this? (2min video)

    Use of vulnerable components will introduce weaknesses into the application. Components with published vulnerabilities will allow easy exploitation as resources will often be available to automate the process.

    Try a challenge in Secure Code Warrior

    @codeant-ai codeant-ai bot added the @enhancement New feature or request label Jun 15, 2024
    Copy link

    codesyncapp bot commented Jun 15, 2024

    Check out the playback for this Pull Request here.

    Copy link

    nudge-bot bot commented Jun 17, 2024

    Hello @Sowhat999. The PR is blocked on your approval. Please review it ASAP.

    4 similar comments
    Copy link

    nudge-bot bot commented Jun 18, 2024

    Hello @Sowhat999. The PR is blocked on your approval. Please review it ASAP.

    Copy link

    nudge-bot bot commented Jun 19, 2024

    Hello @Sowhat999. The PR is blocked on your approval. Please review it ASAP.

    Copy link

    nudge-bot bot commented Jun 20, 2024

    Hello @Sowhat999. The PR is blocked on your approval. Please review it ASAP.

    Copy link

    nudge-bot bot commented Jun 21, 2024

    Hello @Sowhat999. The PR is blocked on your approval. Please review it ASAP.

    Copy link
    Author

    pixeebot bot commented Jun 23, 2024

    I'm confident in this change, but I'm not a maintainer of this project. Do you see any reason not to merge it?

    If this change was not helpful, or you have suggestions for improvements, please let me know!

    Copy link
    Author

    pixeebot bot commented Jun 24, 2024

    Besides the SSRF risks described above, a control like the one I suggested will also help protect against URL parsing bugs where attackers can present a URL that looks like one thing, but ends up being acted on as something else. A leading hacker in this space, Orange Tsai, has a nice visual of showing how humans and parsers will see the same URL differently in his legendary BlackHat talk:

    image

    This is why I wanted to introduce an API that forces you to provide the expectations of the URL at parsing time. There's really no downside, and this code will leave practically no opportunity of ending up in a confused and possibly vulnerable state. The code will be more clear and more safe.

    If there are other concerns about this change, I'd love to hear about them!

    Copy link

    nudge-bot bot commented Jun 24, 2024

    Hello @Sowhat999. The PR is blocked on your approval. Please review it ASAP.

    1 similar comment
    Copy link

    nudge-bot bot commented Jun 25, 2024

    Hello @Sowhat999. The PR is blocked on your approval. Please review it ASAP.

    Copy link
    Author

    pixeebot bot commented Jun 30, 2024

    This change may not be a priority right now, so I'll close it. If there was something I could have done better, please let me know!

    You can also customize me to make sure I'm working with you in the way you want.

    @pixeebot pixeebot bot closed this Jun 30, 2024
    Copy link

    @gitginie gitginie bot left a comment

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    @pixeebot[bot]
    Thank you for your contribution to this repository! We appreciate your effort in closing pull request.
    Happy coding!

    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    @enhancement New feature or request NO JIRA This PR does not have a Jira Ticket PR:size/S Denotes a Pull Request that changes 10-29 lines.
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    1 participant