Capability is the ability to perform actions, in computer science the term is often used in capability-based security, a granular way to restrict processes' rights.
7
votes
1answer
105 views
Edit linux capabilities in Perl
In a C program, you can edit your capabilities with cap_set_proc from libcap. How can I achieve the same in a Perl program?
0
votes
0answers
9 views
Admin and student capabilities for moodle
I want to make an admin only folder in moodle. Here is the code, do you have any suggestions why it doesn't work and it allows everybody - students, teachers, managers ?
in hotspot/db/access.php
...
0
votes
0answers
12 views
add new gstreamer capability
I want to add a new capability to existing capability list in gstreamer. Can anybody help me to understand following questions.
What is a data class in gstreamer?
How can I add a new capability by ...
0
votes
1answer
35 views
About UIRequiredDeviceCapabilities?
If app add two items into UIRequiredDeviceCapabilities array in the info.plist file, one is armv7(the default),another is bluetooth-le.That's explain app only available on devices with BLE4.0 ? And ...
0
votes
0answers
41 views
Handling Double values on CUDA ( Compute Capability 1.1)
My code is calculating 3D-DCT, for a large set of data.
It's running on GForce 9400M, compute capability 1.1 ( which does not support double precision as far as I know )
So, the question is; is there ...
0
votes
0answers
20 views
Wordpress Multisite activate_plugins Capability
I installed wordpress 3.5 and setup for multisite. I created a new site. I found that the new user created is an Administrator of the new site but current_user_can('activate_plugins') returns false.
...
0
votes
1answer
31 views
make pages with capabilities given to users based on DB
I'm new to asp.net and trying to figure out how to go about displaying different capabilities to individual users based on what is allowed to them by checking the database.
A good example I think ...
2
votes
1answer
108 views
How to execve a process, retaining capabilities in spite of missing filesystem-based capabilities?
I want to make system usable without setuid, file "+p" capabilities, and in general without things which are disabled when I set PR_SET_NO_NEW_PRIVS.
With this approach (init sets PR_SET_NO_NEW_PRIVS ...
3
votes
1answer
70 views
How Linux Capabilities relate to zero/non-zero UID?
The capabilities's manpage is rather long and I not 100% clearly understand some things.
How whould look, for example, a funciton that decides whether we have access to CAP_NET_RAW?
Input:
a = ...
0
votes
0answers
134 views
wordpress create custom capability
I'm developing a shopping cart plugin, and planning to create a new user role for customers. My question is how to create custom capabilities so that i can assign these custom capabilities to the new ...
0
votes
1answer
59 views
CUDA-capability and CUDA version: compatible?
I have one machine with a 1.1 compute-capability CUDA GPU. I want to reinstall CUDA and I think I'll go with 5.0;
Is there any such thing as compatibility between CUDA-capability and CUDA's version? ...
0
votes
1answer
46 views
Capture video without sound in Windows Store App
I want to write a Windows Store App that can capture video (without any sound) and take pictures. Imagine a digital camera: you can preview the picture on the screen of your device before pushing the ...
0
votes
1answer
116 views
Query Touch Capabilities for Winrt App [duplicate]
Possible Duplicate:
Detect whether a Windows 8 Store App has a touch screen
For WinRT apps, is there a way to query if the device running the App supports touch or not? I ask because I have ...
0
votes
2answers
238 views
Wordpress - How can I allow authors/contributors to edit only a specific options page but not others?
I created a simple wordpress plugin today which is essentially an options page. It is based on the instructions at this link: http://codex.wordpress.org/Creating_Options_Pages (there is example code ...
3
votes
1answer
185 views
CakePHP: managing user capabilities in wordpress way
I Googled for this for over 3 hours but didn't find anything helpful. Is there any CakePHP plugin that allows managing user roles and capabilities without building ACL, the wordpress way?
Why ...
0
votes
1answer
86 views
stdbuf with setuid/capabilities
I am reading output from another process which generates output (slow and infinite). Because I want to read this data in real-time I use "stdbuf -oL" (line-buffered, data is text). I do not have ...
0
votes
0answers
19 views
How precise is the CapabilityState scheduled maintenance date
I'm wondering how precise the AppEngine's CapabilityState scheduled maintenance date is.
In other words does it always contains HH:mm:ss or just the day/month/year?
3
votes
2answers
315 views
Drop root UID while retaining CAP_SYS_NICE
I'm trying to write a daemon that will start as root using a setuid bit, but then quickly revert to the user running the process. The daemon, however needs to retain the ability to set new threads to ...
0
votes
1answer
172 views
linux capabilities over fuse file system
I have a FUSE filesystem in wich I coded the getxattr and setxattr like this:
int mfs_setxattr(const char *path, const char *name, const char *value, size_t size, int flags)
{
... /* some ...
0
votes
2answers
79 views
Is it necessary to declare the 'internet client' capability if the only network usage is for the windows store?
If a windows store app does not access the network, except to query the windows store to see if a feature has been purchased, is it necessary to declare the 'internet client' capability?
I'd like to ...
1
vote
2answers
112 views
Restrict users from editing post based on the age of the post
In Wordpress, how can I restrict users (based on Capabilities) from editing their published posts after a custom amount of time.
For instance, a user that can publish_posts (authors) can not edit a ...
2
votes
1answer
421 views
Restrict access to Wordpress page based on role or capability
How can I restrict access to a specific Wordpress page based on the user's role or capability? I am aware that there are various plugins that can achieve this and I found some very aged solutions ...
1
vote
0answers
74 views
Prevent process from changing its process group id (`setpgid`)
Is there any way in Linux to prevent a process from modifying its process group ID, i.e. by calling setpgid? I need to do so because I am creating a sandbox, and I want to be able to kill a process ...
0
votes
1answer
192 views
Custom taxonomy - setting access based on role or capability
I am only just learning about custom taxonomies for Wordpress. How is it possible to restrict access for my users to use a taxonomy. For instance, I have created a taxonomy named featured and I only ...
-2
votes
1answer
95 views
Where can I find a list of the iOS platform capabilities?
I'm making an application that tells the user what kind of iOS device they are using and then tells them the device's capabilities. Below is some example code:
case UIDevice1GiPhone: return ...
0
votes
1answer
40 views
does the app engine capability_stub for unit testing allow disabling services?
When I was looking at the source code for capability_stub.py in app engine's testbed framework, I saw a comment stating that every service was always enabled. Now, is there a way to simmulate certain ...
1
vote
1answer
682 views
losing capabilities after setuid()
Trying to set cap_setgid,cap_setuid,cap_setpcap.
#include <sys/types.h>
#include <sys/capability.h>
int main()
{
cap_t caps;
caps = cap_get_proc();
cap_value_t cap_list[2];
...
1
vote
0answers
523 views
Why should I choose Zend over Yii? [closed]
I'm little familiar with Yii framework and have already impressed with built in tools such as Gii and OR mapping.
But many say Zend is is a great framework which I'm not familiar with at all, for ...
0
votes
1answer
56 views
Assign capability to access custom plugins only in wordpress
I have developed a custom plugin "career" in wordpress . It is for view job application . Jobs are actually posts. I am using user role editor plugin to create role and capabilities . there i have ...
2
votes
1answer
121 views
How to check if device has a given capability?
I am building a webapp, and experimenting with figuring out which capabilities the android device has.
Is there a "capability" or "feature" registry I can look this up in? Take an example: Let's say ...
1
vote
1answer
126 views
Show specific media for particular wordpress role
I'm looking for ideas on how to go about only showing specific media to specific users.
I have created a new role and capability for that role in which I would like to attach specific media files to. ...
0
votes
0answers
267 views
Fatal error: Call to a member function add_cap() on a non-object
I'am developing WordPress theme and I can't figured it out why I can't add new custom capabilities for existing custom role without using any plugins for user
//Function for creating new custom ...
0
votes
0answers
34 views
How to automate capability changes for file? [closed]
I have a file in linux, that need some capabilities for start. I can set them using setcap, but the problem is that this file is updated very often and I don't want to set them every time the file is ...
0
votes
1answer
195 views
How to enable/disable metro app setting capabilities?
How can I enable/disable programmatically capabilities in a metro app, i.e. capabilities settings defined in the package app manifest such as internet, microphone, location, etc.?
0
votes
1answer
460 views
Is this correct way to set up .plist for required device capability?
Will the following .plist entry PREVENT devices without a video camera from purchasing an app? Thank you.
0
votes
2answers
57 views
Which capabilities is required in the simpliest application to accept it on marketplace?
like in topic: Which capabilities is required in the simpliest application to accept it on marketplace? I have the siply application which for example have 1 button and 1 textBlock and onClick event ...
0
votes
1answer
56 views
Unexpected Error on Capability Validation when running Marketplace Test Kit of Windows Phone
I'm trying to submit an update of my application and the Capability Validation test of the Marketplace Test Kit is returning "[ERROR]: Unexpected Error". What a great error message.
Submitting the ...
3
votes
1answer
372 views
more capabilities in App Hub than in WMAppManifest.xml
I have developed an app using Silverlight XNA, with AdDuplex (for Silverlight 1.2.3) and Scoreloop (Core Social 1.2.0).
I have defined capabilities of my app in WMAppManifest.xml as
...
1
vote
1answer
287 views
How add Linux capability for CAP_IPC_OWNER in limits.conf?
I have a /etc/security/limits.conf file as following
manu - memlock unlimited
manu - rtprio 100
manu - nice 40
manu ...
2
votes
2answers
588 views
How to disable page's title in wp-admin from being edited?
I have a wp-network installed with users that can create pages in each site.
Each of those pages get a place in the primary menu, and only one user have permission to create all this menu.
I want to ...
2
votes
3answers
541 views
Linux capabilities (setcap) seems to disable LD_LIBRARY_PATH
I use LD_LIBRARY_PATH to set the path of a certain user library for an application. But if I set capabilities on this application
sudo setcap CAP_NET_BIND_SERVICE=eip myapplication
then ...
0
votes
1answer
267 views
Splunk - Searching capabilities how powerful is it?
I am new to splunk. Just 3 odd days at it. I have been using Lucene for indexing and searching raw data in forms of fielded and un-fielded data. I am very much impressed with lucenes performance for ...
1
vote
3answers
1k views
Internet Explorer 9 Object Detection
I am searching for an object detection capability check which will identify IE9. Can you help me?
0
votes
2answers
87 views
Network capabilities for Application
I am busy developing an application in C++ on a Linux computer. The application uses a 3rd party library that uses the Ethernet adapter and the network. The library is the library of a GigE Vision ...
1
vote
1answer
641 views
How can I determine whether my iOS device has a torch light?
In my application I have the option for a torch light. Howevver, only iPhone 4 and iPhone 4S have torch lights. Other devices do not have the torch light. How can I find the current device model? ...
1
vote
2answers
749 views
ubuntu and libcap (capabilities) undefined reference
I'm trying to compile the following minimal C code on ubuntu 10.10:
#include <sys/capability.h>
void main(void)
{
cap_t cap;
cap = cap_get_proc();
}
with gcc -lcap test.c ...
1
vote
1answer
135 views
Prevent an iPhone app from being installed on a device that does not have required hardware or capability
I suddenly came up with a scenario and would be keen to know if we can do it.
Suppose I am using gyroscope APIs and we all know gyroscopes are available in iPhone 4 and above but not below that I am ...
1
vote
2answers
489 views
/usr/bin/passwd and the CAP_CHOWN capability
I was experimenting with Linux Capabilities, and I noticed that for the passwd program to work without being Set-UID root, it needs to have the CAP_CHOWN capability (in addition to some others). ...
0
votes
2answers
2k views
How to set CAP_SYS_NICE capability to a linux user?
my program is using the Linux system call setpriority() to change the priorities of the threads it creates. It needs to set negative priorities (-10) but, as mentioned on the documentation, this fails ...
2
votes
3answers
1k views
How to connect IMAP using AUTHENTICATE PLAIN correctly?
I'm using OpenSSL to connect to mail server.
If you use pop3 - all works fine.
But, I have troubles with IMAP work.
When I use CAPABILITY command - server returns me, that it supports: PLAIN, NTLM, ...
