Need to grant permission to programme attempting to access firewall

Hi,
I want to allow a programme access my firewall but am having problems. This is the message in my firewall log.
Jan 29 22:50:23 bryan-collins-imac Firewall[50]: Deny Connect360Helper data in from 192.168.1.5:62626 uid = 0 proto=17
The Connect360 Helper is the programme I want to grant permission to but I can't find it in Spotlight. Any ideas?

Hi Silvine,
I'd get EasyFind...
http://www.versiontracker.com/dyn/moreinfo/macosx/11706
You can also in the Sharing Pref Pane>Firewall tab>New...>Other, set Port 62626 to open UDP and/or TCP, and name it C360Helper or something.

Similar Messages

  • How to grant permission to user to access Lync 2013 OcsPowerShell

    I'm writing script for our first line for creating Lync users. I need give access to connect to https://lyncpool.domain.local/OcsPowerShell via powershell. Only users in CSAdministrator group have permission to connect, but this group have to much
    privileges. I created custom group with custom permissions and I need grant permission to this group to access OcsPowerShell.

    Try giving them CsUserAdministrator RBAC membership. They should be able to run the following cmdlets to manage the users only:
    Disable-CsUser
    Enable-CsUser
    Get-CsAdUser
    Get-CsUser
    Get-CsUserClusterInfo
    Move-CsUser
    Move-CsLegacyUser
    Set-CsUser
    Grant-CsClientPolicy
    Grant-CsClientVersionPolicy
    Grant-CsConferencingPolicy
    Grant-CsDialPlan
    Grant-CsExternalAccessPolicy
    Grant-CsHostedVoicemailPolicy
    Grant-CsLocationPolicy
    Grant-CsPinPolicy
    Grant-CsVoicePolicy
    Get-CsArchivingPolicy
    Get-CsClientPolicy
    Get-CsClientVersionPolicy
    Get-CsConferencingPolicy
    Get-CsExternalAccessPolicy
    Get-CsHostedVoicemailPolicy
    Get-CsLocationPolicy
    Get-CsPinPolicy
    Get-CsVoicePolicy
    Get-CsClientPinInfo
    Unlock-CsClientPin
    Lock-CsClientPin
    Set-CsClientPin
    Get-CsClientVersionConfiguration
    Get-CsDialPlan
    Get-CsSite
    Get-CsComputer
    Get-CsNetworkInterface
    Get-CsPool
    Get-CsService
    Get-CsSipDomain
    Revoke-CsClientCertificate
    If this helped you please click "Vote As Helpful" if it answered your question please click "Mark As Answer" | Blog
    www.lynced.com.au | Twitter
    @imlynced

  • Grant permission through dynamic parameters entered by user through web app

    This is my code.
    f1=request.getParameter("URL");
    out.println("parameter f1 ===>"+f1);//user name
    f2=request.getParameter("URL1");
    out.println("parameter f2 ===>"+f2);//table name
    f3=request.getParameter("URL2");
    out.println("parameter f3 ===>"+f3);//privilege name
    sql="GRANT f3 to \"" + f1 + "\""+"on \""+f2+"\"";
    st= con.createStatement();
    st.execute(sql);
    out.println("grant succeeded");
    it is giving error that invalid SQL query.please help in writing this code.Any other method for giving dynamic SQL query for granting permission.

    Welcome to the forum!
    >
    Any other method for giving dynamic SQL query for granting permission.
    >
    You should NOT be using dynamic SQL for issuing grants. Security is something that should be taken seriously and grants should ONLY be given to users that need the permission. The necessary grants should be created and reviewed BEFORE they are executed.
    Best practices are to create scripts containing your DDL and place those scripts in a version control system.
    The scripts can then be executed in sql*plus, sql developer or another tool and the results reviewed to ensure that they executed properly.
    If dynamic SQL is needed you:
    1. create a sql statement manually and test it to make sure it works properly
    2. create the code to assemble similar statements and VIEW the output DDL to make sure that it is valid
    3. add exception handling and security handling to the code so that is can only be used for the intended operations and is not subject to SQL injection.
    4. manually execute the DDL produced by the code to make sure there are no syntax errors.
    Clearly you did not even test your SQL before trying to write code to produce it or you would have known your syntax is invalid.
    >
    sql="GRANT f3 to \"" + f1 + "\""+"on \""f2"\"";
    >
    >
    it is giving error that invalid SQL query.
    >
    Of course it is. That code might try to produce the equivalent of:
    GRANT select to "scott" on "hr.employees";There are SEVERAL errors in that code.
    1. You are enclosing the SCHEMA in double-quotes. That means the actual user name will be treated as case-sensitive. So if someone provides 'scott' it will be considered lower-case. There is NO user "scott" in Oracle unless you created that user yourself and used double-qoutes to preserve the case.
    ALL of the schemas created by Oracle, and most users, are UPPER case. So your code will not find any name if the user supplies a LOWER case or mixed-case value.
    2. You are enclosing the target schema and object name in double quotes. There are two things wrong. The same case issue applies again. And the string "hr.employees" will be treated as ONE value. The proper way to quote such a value is:
    "HR"."EMPLOYEES"3. You have the DDL components in the wrong order, hence it is invalid. The ON clause comes BEFORE the target schema.
    GRANT select to on hr.employees to scott;See the SQL Language doc for the GRANT statement
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/statements_9013.htm
    All of the issues you have demonstrate why you should NOT be using dynamic SQL to do DDL. You don't understand the syntax so you can't write code to implement that syntax.
    The syntax is much more complex than the siimple code you are trying to use.
    Grant statements often need to include "SCHEMA.OBJECT" syntax and your code makes no provision for that.
    DDL needs to be tightly controlled and doing it in code can create huge, gaping security holes.
    Abandon your method and use prepared scripts for the DDL commands you need to execute.

  • Grant permission on JOB in SQLagent inorder to modify steps in it

    after i create a job in SQL Agent and schedule it, my DBA changes the owner . 
    but there is always something and have to modify the job.. when he gives me back permission to modify . i cannot really edit the steps in the job.. what permission does he needs to grant me? he too is new to this. please suggest

    Hi Dkuud,
    According to your description, you created a job then the owner of job was changed by DBA. After that, you would like to be granted permissions to modify the job steps.
    Based on the Permissions section of this article(http://msdn.microsoft.com/en-us/library/ms189827.aspx), it’s clear that only members of sysadmin can update a job step owned by another user.
    So in your scenario, if you want to modify the job steps, you should be the member of sysadmin. Please refer to the steps below to add your login to sysadmin role.
    Open SQL Server Management Studio.
    Login with Administrator.
    Open Security\Logins, right click “your login” then choose Properties.
    Click Server Roles on the left pane, check the sysadmin box, click OK.
    If you have any questions, please feel free to ask.
    Best regards,
    Qiuyun Yu

  • Grant Permission in Applet

    I am writing an applet which needed to read and write files with user's local machine, so i need to grant the permissions.
    It seem the only way to grant the permissions for applets is needed user have some manually setup before running the applet. (Either modify the security policy
    file or and add trust cert. ).
    but i see some applets in the web and grant permission by a pop-up dialog
    and user only need to answer "yes" or "no". how can they do this? is this supported by Java Plug-in? and How can i do it ??

    Without policy file in your own class you can do this (i think NS only):
    (import netscape.security.PrivilegeManager;)
    try {
                   PrivilegeManager.enablePrivilege("UniversalLinkAccess");
                   System.out.println("\tUniversalLinkAccess Success!");
                   PrivilegeManager.enablePrivilege("UniversalPropertyWrite");
                   System.out.println("\tUniversalPropertyWrite Success!");
                   PrivilegeManager.enablePrivilege("UniversalPropertyRead");
                   System.out.println("\tUniversalPropertyRead Success!");
              } catch (netscape.security.ForbiddenTargetException e) {
                   System.out.println(
                        "\tFailed! Permission to read system properties denied by user.");
              } catch (Exception e) {
                   System.out.println("\tFailed! Unknown exception while enabling     privilege.");
                   e.printStackTrace(System.out);
              }

  • Grant Permission in BPEL Domain

    I,
    i need the execute the command to grant permission in domain BPEL:
    java -Xbootclasspath/a:/home/oc4j/bpel/lib/orabpel-boot.jar -jar jazn.jar -shell -grantperm jazn.com -role BPMsoaAdminDomainAdmin com.collaxa.security.DomainPermission soaAdmin all
    but i execute said that not found the 'chass java.lang.NoClassDefFoundError: com.evermind.security.UserManager', and i find this class in security-api.jar, but in't find this jar to download.
    Thanks,
    Mesti

    Dont see BPMsoaAdminDomainAdmin role in jazn. Anyhow u can create the user and assign the role from EM also along with the command line utility.
    ApplicationServer > OC4J > SecurityProviders >InstanceLevelSecurity
    Thanks

  • Granting permission to Discussion Board

    Hello Community
        Using Sharepoint 2010 Server and the UI is there a way to
    grant the Discussion Board permission to a group to: Add Discussion, Reply
    to a Discussion and Delete a Discussion without granting Full Control or Contribute permissions?
        Thank you
        Shabeaut

    Hi Shabeaut,
     try below workaround:
    1. Create two user group. One for add discussion and second for add reply. Then add users based on your need in groups
    2. Give contribute permission to first group so that they can add discussion and give read rights to second group so they can only read.
    3. Now as soon a discussion is created you have do break the permission  inheritance to change the permission for both groups. So go to created discussion permission and give read access to first group and contribute to second group.
    This is only OOTB solution for your requirement and this is bit hectic work for admin. I would suggest that create one custom event receiver, which can change the item level permission as soon as discussion is created.
    The thread is http://social.technet.microsoft.com/Forums/office/en-US/89056c2e-352e-4ad1-b9dd-c53e41c8d9ab/custom-grant-permission-for-discussion-board?forum=sharepointadminprevious
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Have a  problem with Lightroom 5.4.  Since the program crashed yesterday it won't launch, it comes up with the message "Lightroom encountered an error when reading its preview cache and needs to quit".  "  Lightroom will attempt to fix this problem net ti

    Have a  problem with Lightroom 5.4.  Since the program crashed yesterday it won't launch, it comes up with the message "Lightroom encountered an error when reading its preview cache and needs to quit".  "  Lightroom will attempt to fix this problem next time it launches".  Except that it doesn't, I keep getting the same message and the program closes.  Does anyone know what I  can do to repair it?  Can't back up, can't do anything.

    There are dozens of threads in this forum that describe the fix

  • Lightroom encountered an error when reading from its preview cache and needs to quit.  Lightroom will attempt to fix this problem the next time it launches"."

    Lightroom encountered an error when reading from its preview cache and needs to quit. Lightroom will attempt to fix this problem the next time it launches"."Help
    Please

    Stan Blumberg wrote:
    I have deleted the file but the message persists even after restarting the computer....any advice??...I am using LR 5
    You don't delete a file, you have to delete a folder. Is that what you did?
    If you deleted the folder specified above, and you still get the message, then it's the wrong folder. Use your operating system's search function and find ALL folders on ALL disks whose name ends with Previews.LRDATA, delete each one found, and then try opening Lightroom.

  • When I tried to open Lightroom 5.4 today I got a msg that says "Lightroom encountered an error when reading from its preview cache and needs to quit. Lightroom will attempt to fix this problem the next time it lauches". What do I do? I get the msg each ti

    "Lightroom encountered an error when reading from its preview cache and needs to quit. Lightroom will attempt to fix this problem the next time it lauches". What do I do? I get the msg each time I try to open it.

    It isn't a file, it's a folder. It will have the same name as your catalog, but will have the extension data. It will be in the same folder along with your catalog. If you need to use the search feature to search for *.lrdata.

  • Lightroom encountered an error when reading from its preview cache and needs to quit.   Lightroom will attempt to fix this problem next time it launches. " But it doesn't fix it!

    I get the following window on loading Lightroom 5.7 -
    Lightroom encountered an error when reading from its preview cache and needs to quit.
    Lightroom will attempt to fix this problem next time it launches.
    I have tried several restarts, without success. Also reinstalled Lightroom; no joy
    Any suggestions?

    Using your system browser (Windows Explorer or Finder), open the folder that contains your catalog. In Windows it is in your pictures folder and then in a Lightroom folder. Inside of the Lightroom folder you will find another folder that has the extension .lrdata. It will have the same name as your catalog except for the extension. You need to delete that folder, and then start Lightroom again. Lightroom will generate a new previews folder, and you should be back in business.

  • Need help getting around the following error: JBO-27101: Attempt to access dead entity in EO.

    Hi everyone,
    My logic in prepareForDML() updates some attributes (shown in the snippet below) based on whether an insert or update is taking place. But, when I delete a line, I get the following error: JBO-27101: Attempt to access dead entity in EO. So far, I have not been able to catch this error.
            if (operation == DML_INSERT) {
                setLineId((new SequenceImpl("eo_s",
                                            getDBTransaction()).getSequenceNumber()));
                setCreatedBy(createdBy);
                setCreationDate(currentDateAndTime);
                setLastUpdatedBy(lastUpdatedBy);
                setLastUpdateDate(currentDateAndTime);
            } else if (operation == DML_UPDATE) {
                setLastUpdatedBy(lastUpdatedBy);
                setLastUpdateDate(currentDateAndTime);
    Any advice would be appreciated. Thanks!
    James

    Hi Timo,
    Thanks for responding. Whenever I delete a line and commit, I get the error. And, since inserts and updates are all that I am interested in, I did not think that I needed deletion logic. The VO contains several EOs, but all are reference EOs that cannot be updated except for the main EO.
    Here is the entire prepareForDML() method:
        protected void prepareForDML(int operation, TransactionEvent e) {
            // BEGIN Initial Version
            // Using prepareForDML is a best practice (versus doDML).
            ApplicationModule am;
            boolean lineIsValid;
            byte entityState;
            byte postState;
            Date currentDateAndTime;
            Date weekEndingDate;
            Number createdBy;
            Number lastUpdatedBy;
            String amConfiguration;
            String amDefinition;
            String entityStateText;
            String operationText;
            String postStateText;
            ServicesAMImpl servicesAMImpl;
            Timestamp timeStamp;
            // amDefinition = "com.model.services.ServicesAM";
            // amConfiguration = "ServicesAMLocal";
            // am = Configuration.createRootApplicationModule(amDefinition, amConfiguration);
            createdBy = new Number(-1); // TODO fnd_profile.value('USERNAME')
            entityState = getEntityState();      
            entityStateText = null;
            operationText = null;
            postState = getPostState();
            postStateText = null;
            lastUpdatedBy =
                    new Number(-1); // TODO fnd_profile.value('USERNAME'); is there a last login id?
            // servicesAMImpl = (ServicesAMImpl)am;
            // lineIsValid = servicesAMImpl.callValidateLineProcedure(getBillable());
            timeStamp = new Timestamp(System.currentTimeMillis());
            currentDateAndTime = new Date(timeStamp);
            // TODO Should weekEndingDate be in the callValidateLineProcedure()?
            weekEndingDate =
                    commonCode.nextDay(getActivityDate(), Calendar.THURSDAY);
            setWeekEndingDate(weekEndingDate);
            // TODO See https://community.oracle.com/message/9542286?tstart=14.
            // if (entityState != Entity.STATUS_DELETED & entityState != Entity.STATUS_DEAD)...
            System.err.println("prepareForDML - getLineId: " + getLineId());
            switch (operation) {
            case DML_DELETE:
                operationText = "Delete";
                break;
            case DML_INSERT:
                operationText = "Insert";
                break;
            case DML_UPDATE:
                operationText = "Update";
                break;
            System.err.println("prepareForDML - operationText: " +
                               operationText); // TODO
            // System.out.println("prepareForDML - operationText: " + operationText); // TODO
            switch (entityState) {
            case Entity.STATUS_INITIALIZED:
                entityStateText = "Initialized";
                break;
                // Don't do anything.
            case Entity.STATUS_UNMODIFIED:
                entityStateText = "Un-Modified";
                break;
                // Don't do anything.
            case Entity.STATUS_DEAD:
                entityStateText = "Dead";
                break;
                // Don't do anything.
            case Entity.STATUS_DELETED:
                entityStateText = "Deleted";
                break;
                // entity.revert();
                // entity.refresh(Entity.REFRESH_CONTAINEES);
            case Entity.STATUS_MODIFIED:
                entityStateText = "Modified";
                break;
                // entity.refresh(Entity.REFRESH_UNDO_CHANGES);
            case Entity.STATUS_NEW:
                entityStateText = "New";
                break;
                // entity.refresh(Entity.REFRESH_FORGET_NEW_ROWS);
                // entity.refresh(Entity.REFRESH_REMOVE_NEW_ROWS);
            default:
                entityStateText = String.valueOf(entityState);
            System.err.println("prepareForDML - entityStateText: " +
                               entityStateText);
            switch (postState) {
            case Entity.STATUS_INITIALIZED:
                postStateText = "Initialized";
                break;
                // Don't do anything.
            case Entity.STATUS_UNMODIFIED:
                postStateText = "Un-Modified";
                break;
                // Don't do anything.
            case Entity.STATUS_DEAD:
                postStateText = "Dead";
                break;
                // Don't do anything.
            case Entity.STATUS_DELETED:
                postStateText = "Deleted";
                break;
                // entity.revert();
                // entity.refresh(Entity.REFRESH_CONTAINEES);
            case Entity.STATUS_MODIFIED:
                postStateText = "Modified";
                break;
                // entity.refresh(Entity.REFRESH_UNDO_CHANGES);
            case Entity.STATUS_NEW:
                postStateText = "New";
                break;
                // entity.refresh(Entity.REFRESH_FORGET_NEW_ROWS);
                // entity.refresh(Entity.REFRESH_REMOVE_NEW_ROWS);
            default:
                postStateText = String.valueOf(postState);
            System.err.println("prepareForDML - postStateText: " + postStateText);
            // DeadEntityAccessException
            if (operation == DML_INSERT) {
                setLineId((new SequenceImpl("eo_s",
                                            getDBTransaction()).getSequenceNumber()));
                setCreatedBy(createdBy);
                setCreationDate(currentDateAndTime);
                setLastUpdatedBy(lastUpdatedBy);
                setLastUpdateDate(currentDateAndTime);
            } else if (operation == DML_UPDATE) {
                setLastUpdatedBy(lastUpdatedBy);
                setLastUpdateDate(currentDateAndTime);
            // Configuration.releaseRootApplicationModule(am, true);
            // END Initial Version
            super.prepareForDML(operation, e);
    Here is the entire doDML() method:
        protected void doDML(int operation, TransactionEvent e) {
            // BEGIN Initial Version
            // This logic is for troubleshooting only.
            String operationText;
            operationText = null;
            switch (operation) {
            case DML_DELETE:
                operationText = "Delete";
                break;
            case DML_INSERT:
                operationText = "Insert";
                break;
            case DML_UPDATE:
                operationText = "Update";
                break;
            System.err.println("doDML - operationText: " + operationText); // TODO
            // System.out.println("doDML - operationText: " + operationText); // TODO
            // END Initial Version
            super.doDML(operation, e);
    James

  • Unexpected error while granting permission in site permission !

    Hello,
    While granting permission to user in site permission it throws unexpected error in IE while in chrome it works perfect !
    Any idea ? 
    Thank you in advance !
    Dipti Chhatrapati

    Hi Dipti,
    I agreed with Scott, please check the log file to find more information based on the correlation ID.
    More information about checking log based on correlation ID, please refer to the link:
    http://mroffice365.com/2011/09/using-correlation-id-to-find-out-sharepoint-problem/
    In addition, whether you used the same account when using the IE and Chrome.
    Which version did you use for IE? Please try to use IE 10 32-bit, compare the result.
    Make sure that account you used in IE have manage permission on the site.
    Please add the site into IE Trusted Site, compare the result.
    Best Regards,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Ipod was disabelled and needed connecting to itunes, with countless attempts  nothing happend therefore performed as reset, now instead of turning on and off,  ipod displays connect to itunes but is not recognised by computer nor will it connect to itunes

    ipod was disabelled and needed connecting to itunes, with countless attempts  nothing happend therefore performed as reset, now instead of turning on and off,  ipod displays connect to itunes but is not recognised by computer nor will it connect to itunes, try enabelling for restore but only connec to itunes is shown consistently

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen
    If recovery mode does not work try DFU mode.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings

  • I just updated to 10.8 Mountain Lion. Now I must enter my admin password each time I attempt to access my main hard drive.  How do I reverse the need for the password.  It's a real PAIN!

    I just updated to 10.8 Mountain Lion from 10.7.5.  Now I must enter my admin password each time I attempt to access my main hard drive.  How do I reverse the need for the password?  It's a real PAIN! 

    I'd think you have a Keychain problem (Keychain storing passwords and the likes).
    When you are being asked, are you offered the checkbox, "Remember this password in my Keychain"? If so, check and see if it stops asking.

Maybe you are looking for

  • Officejet Pro L7555 will not print

    OS is Vista Home.  The document gets hung up in the print que, and I have to reboot the computer to clear it, but it still won't print.  I have checked hp.com/support, and I have the lastest software and drivers, I downloaded the Utility it recommend

  • GPP Delete Printer not removing HTTP/IIS printer on Windows 7

    I'm in the process of updating our print server (Server 2003 R2) to use generic functional queue names instead of the queue names comprised of hardware model and location created by my predecessor. I've been creating a duplicate queue with the "prope

  • Creation of Remote Partition DB: datasource with ID does not exist in the collection

    Hi, I tried to create remote partitioned DB. Followed the below link to create it. http://msdn.microsoft.com/en-us/library/ms174751.aspx In 'partition Type selection' wizard, I selected the remote data source and landed in below error. 'datasource' w

  • ERec: How to add new column in Recruiter TRM New Registered Candidates list

    Hi, In the Recruiter tab, active query for TRM> New Registered Candidates, there are 9 columns which has candidate name, registered since, resume, interest group and so on. If I want to add "Country" in the view, how to proceed? Please advice. Thanks

  • Error while initializing ODI

    Hi I am trying to create interface in ODI. The ODI initialization window pops up and goes on forever. I am not able to proceed. Please help. It used to work before. I tried to run an interface and had to stop it manually, because it kept running. Now