Результаты поиска

  1. myndeswx

    How to load CRT?

    Just FIY, if your provider requires that - they are going to break the HTTPs protocol - so called MITM attack, and will be able to see all your request, and even modify them, very unsafe. :-) It's not really ZP related, you have to install certificates on your windows CA manager
  2. myndeswx

    ChatGPT drag n drop images

    Simply click on the big red 'record' button, upload your image(s) to chatgipity and stop recording. You will get a couple cubes created like 'file upload' and 'click element' You will have to modify the 'file upload' action to upload other images Also inspect the 'click element' action...
  3. myndeswx

    Extracting data without accessing the website

    Interesting, it works for me. Go to window> traffic Then make that POST request In the bottom 'traffic' window double click on the request Open the 'response' tab and send the screenshot here
  4. myndeswx

    Extracting data without accessing the website

    There you go, generating through HTTP requests, might want to use a proxy though :- )
  5. myndeswx

    Trouble Sending Image via HTTP Request

    It could be because you're missing the user agent, in all http requests user agent must be the first header give it a try like this string[] headers = { "User-Agent: Curl", "Authorization: Bearer " + apiToken, "Content-Type: " + contentType }; The post method itself has the...
  6. myndeswx

    Get number of threads and then make action in one of them

    use 'global variable', it would have 3 states 1- need to rotate , 2- rotating, 3- ready any thread that starts should check the state of that global variable, if it needs to rotate- start rotation and set value to 'rotating' if rotating - just wait until it's ready
  7. myndeswx

    Isolating Clipboard Across Multiple Threads to Avoid Data Mixing?

    Seems like you're overcomplicating it a bit, this is what I would suggest you to do if you really want to use the clipboard and not setting it to variable: Simply create a global variable - these variables are shared between threads. So the default value would be false, before copying something...
  8. myndeswx

    [EN] [ZDE] Discord Account Creator for phones + hCaptcha solver for Android

    Solid, have my vote :az:
  9. myndeswx

    Creating a ZAAS

    Zenno as a service. Never heard of it? Well, because I just made it up Zenno is a very powerful tool, it can do all kinds of fancy things, but it's main downside in my opinion is - frontend. For database you can connect it to mySql, then dance with tambourines to create custom coded pages...
  10. myndeswx

    Parse a float vs assign a float to variable : inconsistant storage

    I think you made a correct assumption, all the variables you see in the project maker are actually strings (notice when you want to use any variable of your project in C# cube you have to parse it first) so it's some kind of weird parsing happening, interesting why it's rounding up to the upper...
  11. myndeswx

    Сontest The 1st Template Contest

    Let's go! :ar:
  12. myndeswx

    Trick to find what's slowing your template down

    Pretty sure 'traces' exist for as long as I have been using ZP haha
  13. myndeswx

    Trick to find what's slowing your template down

    Noticed one template running kind of slower today, decided to investigate and found it really useful simple way to track down which actions are causing it, so lets go! #1 We enable the 'trace execution' #2 We open CMD and navigate to the traces folder, fx "cd...
  14. myndeswx

    [Чек номеров Whatsapp] - Проверка телефонных номеров на наличие Whatsapp

    All good, checker works, author helped to fix some issues :-)
  15. myndeswx

    Anonymity + ZP

  16. myndeswx

    Anonymity + ZP

    What's UBT? : -)
  17. myndeswx

    Start on boot

    Having issues with ZD starting on server reboot, using task scheduler - it starts hidden, only visible in task manager, using a shortcut in the startup folder - completely ignored. What solutions do you guys have managing RDPs? Thank you
  18. myndeswx

    Need few templates

    Actually have this made for myself without browser but on get/post, could adjust it for you :-)
  19. myndeswx

    Проверка на десятки признаков в ZennoDroid Enterprise за пару секунд

    Nice! After using ZD for a while I realized to use the same method, just get the XML once and regex the contents to see what state is it in. It is also important to check the 'bounds' because the element can be on the XML but not visible on the screen (need to scroll if you need to click it).
  20. myndeswx

    I got the error project does not contain default settings when selling templates using plugins to customers

    This project in fact does not contain settings, probably client is using an old project that needs to be updated? This ZP is pretty old version 7.7.3 maybe your template was updated using the newer versions, and can't run on this version of zennobox
  21. myndeswx

    How to get the Last Line of Excel?

    If the table does not show up means zenno can't load the file, probably the file name is incorrect(you have variables in there so check that), remove spaces, another known problem is that if you have excel open on your PC - zenno will not be able to write to it, so close the file on you PC...
  22. myndeswx

    How to Simulate Text Selection : Get the ChatGPT answer

    Sounds like dealing with medium.. had similar headaches with it recently lol ) Well, here's what I came up with, give it a try, it's not tested on chatgpt, but I think it should give you a rough idea of what is possible, also be warned that clipboard is shared between threads!!! Tab tab =...
  23. myndeswx

    How to Simulate Text Selection : Get the ChatGPT answer

    Goot it, well just FIY you can ask the for markdown in the API response, and it does a pretty good job, same for HTML responses ;-)
  24. myndeswx

    How to Simulate Text Selection : Get the ChatGPT answer

    What is the reason for not just using the API?
  25. myndeswx

    What ZennoPoster version(s) are you using?

    7.7.5 was good, then there were issues, the new 7.7.9 seems to be working pretty stable :-)
  26. myndeswx

    Discussion - new version 7.7.9.0

    • Fixed the page scale when setting window sizes larger than real ones in Chromium browser.
  27. myndeswx

    Get page headers from a request

    Yes, before visiting the site on the browser run this- instance.UseTrafficMonitoring = true; var traffic = instance.ActiveTab.GetTraffic(); foreach(var t in traffic) { if (t.Url.Contains("the url that contains your headers")) { return t.Url; // it can also be t.RequestBody...
  28. myndeswx

    I want change navigator.userAgentData,but no tips

    Give it a try, at least I use it like this
  29. myndeswx

    I want change navigator.userAgentData,but no tips

    when starting the instance you can set the user agent in chrome, that should also automatically get used in navigator- Some example how to set the navigator fields instance.ShowNavigatorField(ZennoLab.InterfacesLibrary.Enums.Browser.NavigatorField.Vendor)...
  30. myndeswx

    Gpts : Let's create Virtual assistant for Zeno!

    All the C# methods are here - https://help.zennolab.com/en/v4/zennoposter/macros/4.3.5/webframe.html
  31. myndeswx

    Anyone Get ChatGPT4 to work with ZP?

    It's inbuilt in the Newtonsoft that zenno uses for JSON parsing
  32. myndeswx

    Anyone Get ChatGPT4 to work with ZP?

    That's a really annoying issue, good thing that zenno has our back! string ob = project.Variables["aiPromptTex"].Value; string json = Global.ZennoLab.Json.JsonConvert.ToString(ob); return json;
  33. myndeswx

    Regex Challenge: Extracting Specific Group Data?

    Probably just need to adjust the regex, save page source to variable, open it up in notepad and in regex helper, from there play around with building regexes and it will work
  34. myndeswx

    How can i add all match from action designer?

    That's how it should be when automating! :ar: Yes, I have seen it likes to include some C# code that does not exist in zp, but after tidying it up a bit it's definitely possible to get some good examples, always use 'write zennoposter code' and not C# code, you can also post the code snippets...
  35. myndeswx

    How can i add all match from action designer?

    There are about 40 languages, putting each of them to variables will be hard work, and we don't like hard work :- ) you can just use C# to iterate through that list and open everything up (if your PC does not get on fire) //our list that we just made with regex var list =...
  36. myndeswx

    How can i add all match from action designer?

    You're welcome, and no, as far as I know only possible to get the collection through C# , you can also use this little tool, that basically does what we just did with regex but all automatically, but it does not seem to work with your website.
  37. myndeswx

    Load URLs In Multiple Tabs

    You could create a C# cube and don't wait for the page to fully load like this - Tab tab1 = instance.NewTab("1"); tab1.Navigate("https://www.youtube.com/watch?v=9ba3coWgSPg"); Tab tab2 = instance.NewTab("2"); tab2.Navigate("https://www.youtube.com/watch?v=9ba3coWgSPg"); Tab tab3 =...
  38. myndeswx

    Extracting data from a website that can't be extracted

    Got it, so possibly this iframe page does not even have the pixel installed? If you have access to this page I guess you could just put the pixel on this iframe as well?
  39. myndeswx

    Extracting data from a website that can't be extracted

    okay okay, and it also does not work in chrome/firefox with this method?
  40. myndeswx

    Extracting data from a website that can't be extracted

    I think you just answered your own question, it works on chrome but on on ZP, then you need to look why it does not work on zp, it's much easier if you have access to the website
  41. myndeswx

    How can i add all match from action designer?

    You can simply regex the {-Page.Source-} working with the regex helper alone you already get almost perfect result, to get rid of the first result you can fine tune the regex a bit more manually, in this case to include only {2,3} lovercase letters and / Full regex- (?<=<a\...
  42. myndeswx

    Extracting data from a website that can't be extracted

    How do you know if the pixel fires, do you own this website? Also, did you try this method on your own chrome?
  43. myndeswx

    Extracting data from a website that can't be extracted

    Interesting, my suggestion would be to try registering through that URL or iframe manually on chrome, if it works - we eliminate the possibility that registration does not work directly on iframe. In that case the chances are that the issue is with anonymity or the data being used, like...
  44. myndeswx

    Extracting data from a website that can't be extracted

    Create a cube like this, the regex to use - (?<="camera"\ src=").*?(?="\ data-hj-allow-iframe=") Check out the regexp builder in zenno, it's a very easy to use tool and you will 100% need to use it in the future, so just get used to it now ;-)
  45. myndeswx

    Extracting data from a website that can't be extracted

    There you go, the issue is that this window is loaded as iframe, if you open it directly everything works, just need to generate correct date fo birth and you should be good to go.
  46. myndeswx

    Spotify on chromium?

    Hello, does anyone have spotify running on chromium? I tried following the instructions here - https://zennolab.atlassian.net/wiki/spaces/EN/pages/2111864833/Instructions+for+using+Widevine+component but it still does not work. Thanks!
  47. myndeswx

    List Question

    It's a smart approach, and it could work if you had the 'save changes to the file' unchecked, and you would not actually need to add any lines back, BUT this will not work in multithreaded. Because this would be an infinite loop, it would keep taking and adding lines back to the file forever...
  48. myndeswx

    Extracting data from a website that can't be extracted

    Create a cube like this when the page is loaded. Make a screenshot of the page Upload the value of 'source' variable here (all the HTML) and the screenshot
  49. myndeswx

    How to generate or find ZIP codes for specific countries and cities

    https://xyproblem.info/ please explain what is your main goal
  50. myndeswx

    Extracting data from a website that can't be extracted

    regex action, source - {-Page.Source-} regex -(?<=<td>)\d{11,11}(?=</td>) , might need to adjust the regex based on the page source. You can first set {-Page.Source-} to a variable and see in a notepad how those numbers look exactly, just paste it here if it does not work.