Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
68 views

Summary I'm trying to deploy a Python code execution service using nsjail for sandboxing on Google Cloud Run, but nsjail fails with `prctl(PR_SET_SECUREBITS)` errors even with minimal configuration. ...
Venkat Nikhil's user avatar
0 votes
0 answers
31 views

So here is my problem... I setup everything in sandbox environment including a webhook (PAYMENT.CAPTURE.COMPLETED event). Everything works perfectly, my API gets called and logs appear on dashboard. ...
Misha Mikhail's user avatar
0 votes
0 answers
31 views

I have make build using cordova platform add [email protected] version but getting error when run on iphone device I am trying to my web in iFrame and iFrame host in cordova app. (web framework is DNN(https:/...
Chetan's user avatar
  • 216
1 vote
0 answers
91 views

I'm trying to run app from Xcode on real device with sandbox mode. What I've tried so far: Locally: iPhone reset using: Reset All Settings Developer mode on device is Enabled Settings > My Name &...
Marcin Kapusta's user avatar
0 votes
1 answer
245 views

I've been using E2B sandboxes for around 2 month. I have been distant from E2B and coding in general for a a few weeks and now that I'm back and want to test the project I was working on I'm getting ...
Pexicade's user avatar
  • 101
0 votes
0 answers
113 views

I have an iframe which might contain these commands: setTimeout(function(){window.top.location.href = "//www.stackoverflow.com";}, 1000); setTimeout(function(){window.open("//www....
Ivan Kuckir's user avatar
  • 2,575
0 votes
0 answers
43 views

I'm working on a sandboxed Mac SwiftUI app. The user selects a file. I read a few things from the file, then I want to copy the same file to URL.temporaryDirectory. Reading the file in question is ...
Mitch Cohen's user avatar
  • 1,665
1 vote
1 answer
194 views

I am developing an App Store app that will run on iPhone, iPad, and Mac (universal purchase). To test synchronization between devices, I need to sign in with the same account for in-app purchases. On ...
Nenharmha's user avatar
0 votes
0 answers
50 views

I am trying to compile a hello world c program using gcc using the following nsjail command - sudo nsjail -B / --cwd /mydir -- /usr/bin/gcc main.c I know, extremely naive and insecure way of ...
Tony's user avatar
  • 110
0 votes
0 answers
105 views

I am developing a Screen Time App for iOS and I am having issues with the ShieldConfigurationExtension (ShieldConfigurationDataSource). I know this extensions is sandboxed but I should be able to read ...
Lukáš Matuška's user avatar
0 votes
1 answer
99 views

I am trying to connect the sandbox environment of Yodlee Evestnet. I have set up the backend with Node (Express) and am setting a post request to the URL "https://sandbox.api.yodlee.com/ysl/auth/...
Aditya Dhanraj's user avatar
0 votes
1 answer
191 views

I'm running a simple web application that creates a JSON out of some data the user manipulates in a web UI. The page is served as a GitHub Pages hosted site. What I'm trying to do is to create a ...
Edwin's user avatar
  • 827
-3 votes
1 answer
133 views

I have an old app written with UIKit. It collects files from a folder. It works fine with UIKit. But when creating a SwiftUI app using the same code, I get an empty list of files. I used ChatGPT and ...
Peter71's user avatar
  • 2,324
1 vote
0 answers
190 views

Someone suggested that I change my iOS / backend purchase verification from using receipts to transactions since it's the way to go in StoreKit 2. So I implemented it in my Node.JS backend. However, I ...
Jedi Exile's user avatar
1 vote
0 answers
86 views

I am using SwiftLint via Swift Package Manager (SPM) in my Xcode project and would like to enable automatic correction for removing whitespace in empty lines. I have added the following configuration ...
Oleksandr Matrosov's user avatar
2 votes
2 answers
914 views

I’m struggling to get StoreKit 2 to fetch products in my SwiftUI app while using a sandbox user. I think I’ve followed all necessary setup steps in Xcode, App Store Connect, and my physical test ...
lhk's user avatar
  • 30.7k
0 votes
2 answers
859 views

I followed all the guidelines for setting up Apple Pay on my iPhone for testing: Created a new Apple ID for the sandbox account. Added this Apple ID to the Test Accounts (in the Users and Access menu ...
blindknight's user avatar
0 votes
0 answers
50 views

I've compiled nsjail on a fresh ubuntu 24.04 machine from hetzner cloud with the following network information: root@ubuntu-8gb-hil-1:~# ifconfig docker0: flags=4099<UP,BROADCAST,MULTICAST> mtu ...
danthegoodman's user avatar
1 vote
0 answers
56 views

In my Flutter application, I have implemented a feature that allows users to download a document and save it to a location of their choice. The process involves: Using the FilePicker package to let ...
Gowtham's user avatar
  • 51
0 votes
0 answers
32 views

Since .NET Core, we no longer have the ability to create custom AppDomains. There are some projects, such as DotNetIsolator, that allow running code in a sandbox. But, if we don't want to use a third-...
Ricardo Peres's user avatar
1 vote
1 answer
123 views

I am working on providing an environment for running users' untrusted python code. I use the python bindings of libseccomp library to avoid triggering unsafe system calls, and the service is running ...
Chengyuan Zhang's user avatar
0 votes
0 answers
49 views

It is possible to setup sandbox server URL for Google for in-app purchases, just as you can setup in sandbox server URL in appstore connect for Apple? I have my subscription setup in Pub/Sub. It is ...
leesand's user avatar
  • 41
0 votes
0 answers
46 views

Currently, i'm testing Facebook Graph API for creating Campaigns, Adsets, Ad creative and ads. I have create an Sandbox ad account, assign it to a page and get its token for those API. For Campaigns &...
Thien Nguyen's user avatar
0 votes
1 answer
37 views

a friend was asking how to change the permissions for a registry key. I did not want to test it on my laptop, so i started up the Windows Sandbox on my windows 11 laptop and added that registry key. ...
jk Registraties's user avatar
0 votes
0 answers
264 views

I'm working on a React Native app and using the following libraries to handle in-app purchases and subscriptions: Purchase management: react-native-iap Transaction verification on server side: apple-...
Mourad Tlili's user avatar
2 votes
0 answers
353 views

Question: I am currently implementing a subscription-based feature in my app and facing a circular issue with the App Store review and Sandbox testing. Here is the situation: I created a subscription ...
Berkan's user avatar
  • 315
6 votes
1 answer
193 views

I’ve been working on a project that involves dynamically loading and executing third-party code. Obviously, this is inherently risky, and I need a way to sandbox the code and limit its permissions. ...
Tategoto Azarasi's user avatar
0 votes
1 answer
145 views

I'm integrating eBay's OAuth API into my C# application to generate an access_token by exchanging an authorization_code. However, I get the following error during the token exchange: { "error&...
John's user avatar
  • 3
1 vote
2 answers
74 views

I am developing a macOS app that requires the ability to create new files in the same directory as a user-selected file, but I am encountering permission issues due to the App Sandbox restrictions. ...
Fractale's user avatar
  • 1,704
2 votes
0 answers
251 views

When I try to run the app on the iOS simulator (iPhone 15, iOS 17.5), I encounter a sandbox error related to rsync.samba. The specific error messages are: Sandbox: rsync.samba(18075) deny(1) file-...
Abdullah Jaspal's user avatar
2 votes
2 answers
439 views

When using AWS Amplify Gen2 is it somehow possible to use the Data Manager UI in the AWS Console for Sandbox Envs? Or is this just possible for 'real' deployments? I am able to use it for my 'main' ...
Paul's user avatar
  • 23
0 votes
1 answer
84 views

I've been working on automating the creation of sandbox accounts for my test environment, I need to find a way to create sandbox accounts dynamically by hitting PayPal's endpoint so I can test the ...
Marcos Manchinelli's user avatar
0 votes
0 answers
168 views

I have an Electron app that uses a native add-on to access the Photos library on macOS. This feature didn't work in the MAS (Mac App Store) build when the sandbox is enabled. Here is what I observed: ...
Hao Xi's user avatar
  • 391
-1 votes
1 answer
263 views

I have written a macOS application using SwiftUI (IDE Xcode). The application stores its data in SQLite database files using the SQLite3 library (import SQLite3). The application works perfectly ...
HailStorm's user avatar
1 vote
0 answers
354 views

I want to safely run untrusted user-submitted code (for example a single c++ file, without anything but standard libraries, and without multithreading) on my server. I want the program to be able to ...
CompetitiveCrocodile's user avatar
7 votes
1 answer
2k views

I'm getting these errors when building my project in Xcode after installing mapbox: error: Sandbox: rsync.samba(76010) deny(1) file-write-create /Users/lluis/Library/Developer/Xcode/DerivedData/...
Lluís Rodríguez's user avatar
-1 votes
1 answer
885 views

I'm currently working on integrating the Amazon Selling Partner API into my application. I've successfully called the static sandbox provided by Amazon, but I'm looking for a way to test various API ...
Vishal Thakare's user avatar
-1 votes
1 answer
122 views

I am following the QuickStart tutorial for Plaid https://www.youtube.com/watch?v=sGBvKDGgPjc&list=PLyKH4ZiEQ1bGJQXLNhrKQtQK8ADWTDJ0Y using non-docker. I continue to get this error output: ...
whyDoICodeFrontEnd's user avatar
0 votes
1 answer
163 views

I deployed CSP policies to my system and then encountered an error when trying to view a PDF file from the local path. Before adding the CSP policies, this issue did not occur. This problem appears in ...
imzz's user avatar
  • 19
1 vote
0 answers
51 views

In standard Docker (runc) by default, /dev/mem is not mounted. It's possible to pass it through with --device /dev/mem:/dev/mem to make it visible within the container. However, reading is still not ...
niklassc's user avatar
  • 550
0 votes
1 answer
134 views

Wanted to get more data by downloading the document to fetch more data about patient and get them downloaded and parse them two build clear doctor view. I have been tried multiple endpoints from EPIC ...
Bhautik Korat's user avatar
0 votes
1 answer
199 views

Recently, I've encountered an issue when trying to publish products on my platform. Previously, everything worked smoothly, but now I'm encountering an error preventing the publication of products. ...
Neon Man's user avatar
1 vote
0 answers
190 views

I have an issue with running the `Insightfull.io` Workpuls app on my Fedora 40. I've installed it as an executable file so all I did : ./Workpuls.AppImage The application launched successfully but I ...
Mo R's user avatar
  • 13
0 votes
1 answer
649 views

Currently trying to install Cape v2 on an Azure VM that I have set up. I am following instructions on the website here. The instructions say: "BEFORE executing the script, you should replace the ...
JTurn01's user avatar
4 votes
2 answers
4k views

I entered Setting > App store section. But ı cannot see anything about sandbox account. What should ı do? Note: I have a sandbox app installed on the dev from Xcode. I tried everything possible ı ...
bacem's user avatar
  • 51
2 votes
0 answers
35 views

Suppose we have a program spawner that is used to launch other programs with a seccomp filter. If one wants to deny the use of execve in app, could this be achieved by applying the filter to a thread ...
Melab's user avatar
  • 2,966
0 votes
1 answer
146 views

I'm working on ADF in a copy activity, sending thousands of records to Salesforce Sandbox. I'm encountering errors and need to retrieve the SOQL Query statements sent during an Upsert. Is there any ...
Fernando Basaez's user avatar
1 vote
0 answers
146 views

I'm seeking advice on resetting a NetSuite sandbox to its original, default state (no data, default settings) after it's been refreshed from the production account. The aim is to use the sandbox for ...
RogerYueh's user avatar
0 votes
0 answers
3k views

When I make a sandbox Paypal payment by using my paypal account, it works fine !... I get the notification of the payment in my sandbox. And thus, If I have a look in the sandbox payment events, I can ...
solfasi's user avatar
2 votes
0 answers
47 views

This is my code where in this function showPdf i am displaying the pdf on screen, in desktop version it is working fine but in mobile broswer it is throwing this error --> jquery....
user15895653's user avatar

1
2 3 4 5
50